/*-----------------------------------------------------------
  Theme Name: Podcaster
  Version: 1.9.2
  Description: Premium WordPress Theme By Theme Station
  Author: http://www.themestation.co
  Author URI: http://themeforest.net/user/themestation/
  Designed & Developed by http://www.themestation.co
  Theme URI: http://themeforest.net/user/themestation/portfolio
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, post-formats, sticky-post, theme-options, threaded-comments
  Text Domain: podcaster
  Domain Path: /lang


  Contents
  -----------
  1. General Settings
  2. Navigation & Header
  3. Latest Episode (Legacy "Featured Front Header")
  4. Featured Front Header (New & Improved)
  5. Front Page List of Posts
  6. Posts
  7. Pagination
  8. Single Post
  9. Comment Section Styling
  10. Blog Page Header
  11. Pages
  12. Seriously Simple Podcasting
  13. Sidebar & Widgets
  14. Shortcode Overrides
  15. Footer
  16. Social Media Icons
  17. Responsive Settings
*/


/*
 * 1 | General Settings
 *-----------------------------------------------------------------
*/

/* 1.1 | @font-face for Icons
------------------------------------------*/
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/font-awesome/webfonts/fa-regular-400.eot?v=5.9.0');
  src: url('fonts/font-awesome/webfonts/fa-regular-400.eot?#iefix&v=5.9.0') format('embedded-opentype'),
  url('fonts/font-awesome/webfonts/fa-regular-400.woff?v=5.9.0') format('woff'),
  url('fonts/font-awesome/webfonts/fa-regular-400.ttf?v=5.9.0') format('truetype'),
  url('fonts/font-awesome/webfonts/fa-regular-400.svg#fontawesomeregular?v=5.9.0') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/font-awesome/webfonts/fa-solid-900.eot?v=5.9.0');
  src: url('fonts/font-awesome/webfonts/fa-solid-900.eot?#iefix&v=5.9.0') format('embedded-opentype'),
  url('fonts/font-awesome/webfonts/fa-solid-900.woff?v=5.9.0') format('woff'),
  url('fonts/font-awesome/webfonts/fa-solid-900.ttf?v=5.9.0') format('truetype'),
  url('fonts/font-awesome/webfonts/fa-solid-900.svg#fontawesomeregular?v=5.9.0') format('svg');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'FontAwesomeBrands';
  src: url('fonts/font-awesome/webfonts/fa-brands-400.eot?v=5.9.0');
  src: url('fonts/font-awesome/webfonts/fa-brands-400.eot?#iefix&v=5.9.0') format('embedded-opentype'),
  url('fonts/font-awesome/webfonts/fa-brands-400.woff?v=5.9.0') format('woff'),
  url('fonts/font-awesome/webfonts/fa-brands-400.ttf?v=5.9.0') format('truetype'),
  url('fonts/font-awesome/webfonts/fa-brands-400.svg#fontawesomeregular?v=5.9.0') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* 1.2 | Body, Links, Headings, Icons, ...
------------------------------------------*/
* {
  box-sizing: border-box;
}
body {
  font-family: 'Raleway', 'Arial', sans-serif;
  color: #555555;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-size: calc( 0.875rem + 0.21vw );
  overflow-x: hidden;
  background-color: #e5e5e5;
  line-height: 1.7;
}
body.single,
body.page {
  background-color: #ffffff;
}
body.page-template-pagepage-frontpage-php,
body.archive.page {
  background-color: #e5e5e5;
}
a:link,
a:visited {
  text-decoration: none;
  color: #199fdd;
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
a:hover, 
a:focus {
  text-decoration: none;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', 'Arial', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 {
  font-size: 48px;
  font-size: calc(2rem + 0.94vw);

}
h2 {
  font-size: 42px;
  font-size: calc(1.5rem + 0.94vw);
}
h3 {
  font-size: 36px;
  font-size: calc(1.125rem + 0.94vw);
}
h4 {
  font-size: 30px;
  font-size: calc(1rem + 0.94vw);
}
h5 {
  font-size: 24px;
  font-size: calc(0.875rem + 0.52vw);
}
h6 {
  font-size: 18px;
  font-size: calc(0.875rem + 0.21vw);
}
pre {
  font-family: 'B612 Mono', monospace;
  white-space: pre-wrap;      
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

/* Wordpress defaults */
.wp-caption-text {
  font-size: 16px;
}
.gallery-caption {
  font-size: 16px;
}
.bypostauthor {
  font-size: 16px;
}
.alignright {
  margin-left: 28px;
  float: right;
}
.alignleft {
  margin-right: 28px;
  float:left;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.truncate {
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Buttons */
.extrasmall {
  padding: 8px 24px;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.small {
  padding: 12px 36px;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.medium {
  padding: 18px 54px;
  padding: calc(0.875rem + 0.21vw) calc(1.5rem + 1.56vw);
  font-size: 18px;
  font-size: calc(0.875rem + 0.21vw);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.large {
  padding: 24px 72px;
  font-size: 22px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
.listen_butn {
  border: 0px solid #fff;
  border-radius: 10px;
  display: inline-block;
  font-family: 'Niramit', 'Arial', sans-serif;
  height: 50px;
  line-height: 16px;
  margin-top: 24px;
  margin-right:15px;
  margin-bottom: 50px;
  padding: 17px 21px;
  width: 50px;
}
.listen_butn_text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

/* Info Boxes */
.bx-info {
  line-height: 30px;
}
.bx-info span {
  display: inline-block;
  margin-right: 20px;
}
.bx-info h4 {
  display: inline-block;
  font-size: 22px;
  margin: 0 0 10px 0;
  font-weight: 600;
}
.bx-info.dark {
  padding: 25px;
}

/* Explicit Marker */
.mini-ex {
  background: #e42920;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3px 3px;
  border-radius: 2px;
  line-height: 1;
  margin-left: 10px;
  display: inline-block;
}
.pulls-right .mini-ex,
.pulls-left .mini-ex {
  font-size: 8px;
}
.mini-ex.small-ex {
  display:none;
}

/* Other Helpers */
.clear {
  clear: both;
  display: block;
}
.screen {
  background-color:rgba(0,0,0,0.2);
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* Spinners */
.circle-spinner {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  border: solid 4px #000000;
  }
.circle-spinner .line {
  position: absolute;
  width: 32px;
  height: 4px;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  top: 14.5px;
  -webkit-animation: spinning-animation 1.5s linear 0s infinite;
  }
.circle-spinner .line:before {
  content: "";
  height: 4px;
  width: 19px;
  position: absolute;
  right: -2px;
  background: #000000;
  border-radius: 5px;
}
@-webkit-keyframes spinning-animation {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}



/* 1.3 | Button, Input & Textarea Settings
------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select {
  background: transparent;
  padding: 20px;
  font-family: 'Niramit', 'Arial', sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #dddddd;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  opacity: 1;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
select {
  min-width: 345px;
}

/* Custom Contact Form */
.form-custom {
  margin-top: 32px;
}
.form-custom input,
.form-custom textarea {
  width: 100%;
}
.form-custom .form-inline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.form-custom .form-inline .form-name,
.form-custom .form-inline .form-email {
  width: 48%;
}
.form-custom .form-subject {
  width: 100%;
  margin-bottom: 24px;
}
.form-custom .form-message {
  width: 100%;
  margin-bottom: 24px;
}



textarea {
  background: #fff;
  padding: 20px;
  font-family: 'Niramit', 'Arial', sans-serif;
  line-height: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #dddddd;
  opacity: 0.7;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
textarea:focus {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
input[type="submit"],
.form-submit #submit,
#respond #commentform #submit,
a.butn:link,
a.butn:visited,
.error404 .entry-content a.butn:link,
.error404 .entry-content a.butn:visited,
.butn,
.wp-block-file__button {
  background: #199fdd;
  border: none;
  font-family: 'Raleway', 'Arial', sans-serif;
  color: #fff;
  opacity: 1;
  display:inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  font-weight: 700; 
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="submit"]:hover,
.form-submit #submit:hover,
#respond #commentform #submit:hover,
a.butn:hover,
.error404 a.butn:hover,
.butn:hover,
.wp-block-file__button {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.post-password-form input[type="submit"] {
  padding: 12px 36px;
  font-size: 16px;
}
.post-password-form input[type="password"] {
  padding: 12px 36px;
}
#respond #commentform #submit,
.wpcf7-form-control.wpcf7-submit {
  background: #199fdd;
  border: none;
  font-family: 'Niramit', 'Arial', sans-serif;
  color: #fff;
  opacity: 0.8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw)
}
#respond #commentform #submit:hover,
.wpcf7-form-control.wpcf7-submit:hover {
  cursor: pointer;
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
input.secondary[type="submit"],
#respond #cancel-comment-reply-link:link,
#respond #cancel-comment-reply-link:visited,
#comments .commentlist li .comment-body .reply a:link,
#comments .commentlist li .comment-body .reply a:visited {
  background-color: transparent;
  border:none;
  font-family: 'Niramit', 'Arial', sans-serif;
  font-size: 18px;
  color: #fff;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  opacity: 0.8;
}
input.secondary[type="submit"]:hover,
#respond #cancel-comment-reply-link:link:hover,
#respond #cancel-comment-reply-link:visited:hover,
#comments .commentlist li .comment-body .reply a:link:hover,
#comments .commentlist li .comment-body .reply a:visited:hover {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.post .more-link {
  font-weight: bold;
  margin-top: 32px;
  margin-top: calc(1rem + 0.83vw);
  display: inline-block;
}
blockquote {
  border: none;
  background-color: #eee;
  margin: 25px 0;
  padding: 32px;
  line-height: 31px;
}
blockquote p {
  font-size: inherit;
  line-height: 1.618em;
}
code {
  background-color:rgba(0,0,0,0.2);
  color: #333;
  white-space: pre-wrap;
}
.wp-caption .wp-caption-text {
  background-color: #eee;
  padding: 16px 32px;
}

/* 1.4 | Containers
------------------------------------------*/
.super-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #282D31;
}
.container .inner {
  padding: 0;
}
#inner-wrap {
  position: relative;
  width: 100%;
}

/* Grid */
.container {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col-lg-12 {
  width: 100%;
}
.col-lg-11 {
  width: 91.66666667%;
  width: calc( 91.66666667% - 16px );
}
.col-lg-10 {
  width: 83.33333334%;
  width: calc( 83.33333334% - 16px );
}
.col-lg-9 {
  width: 75%;
  width: calc( 75% - 16px );
}
.col-lg-8 {
  width: 66.66666667%;
  width: calc( 66.66666667% - 16px );
}
.col-lg-7 {
  width: 58.33333334%;
  width: calc( 58.33333334% - 16px );
}
.col-lg-6 {
  width: 50%;
  width: calc( 50% - 16px );
}
.col-lg-5 {
  width: 41.66666667%;
  width: calc( 41.66666667% - 16px );
}
.col-lg-4 {
  width: 33.33333334%;
  width: calc( 33.33333334% - 16px );
}
.col-lg-3 {
  width: 25%;
  width: calc( 25% - 16px );
}
.col-lg-2 {
  width: 16.66666667%;
  width: calc( 16.66666667% - 16px );
}
.col-lg-1 {
  width: 8.33333334%;
  width: calc( 8.33333334% - 16px );
}


/* 1.5 | Flexslider Settings */
.flex-direction-nav a {
  width: 48px;
  height: 48px;
  margin: -20px 0 0;
  display: block;
  background-image: url(img/flexslider-arrows.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: #199fdd;
  position: absolute;
  top: 50%;
  z-index: 100;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
}
.flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: -25px;
  -moz-transition-duration: 0.5s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  text-indent: 9999px;
}
.flex-direction-nav .flex-prev {
  left: -10px;
  -moz-transition-duration: 0.5s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  text-indent: -9999px;
}
.flexslider:hover .flex-next {
  opacity: 0.8;
  right: 10px;
  -moz-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.flexslider:hover .flex-prev {
  opacity: 0.8;
  left: 10px;
  -moz-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.flex-control-nav {
  bottom: 5px;
}
.flex-control-paging li a {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: none;
  height: 8px;
  width: 8px;
}
.flex-control-paging li a.flex-active {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
  cursor: default;
}


/* 2 | Navigation, Header & Logo
------------------------------------------*/
.above {
  background-color: #282d31;
}
.above-inner {
  display: flex;
  align-items: center;
}
.above .col-lg-3,
.above .col-md-3,
.above .col-lg-9,
.above .co-md-9 {
  min-height: 0px;
}


/* Menu | Transparent */
.above.nav-transparent.no-featured-image {
  float: none;
  position: static;
  width: 100%;
  z-index: 10;
}


/* Menu | Sticky (Large) */
.above.large_nav {
  float: none;
  position: static;
  width: 100%;
  z-index: 10;
}


/* Menu | Sticky (Small) */
.above.nav-sticky.small_nav {
  float: left;
  position: fixed;
  width: 100%;
  z-index: 50;
}
.above.small_nav.nav-transparent {
  background-color:#282d31;
}
.above.small_nav #nav .thst-menu li a {
  padding: 32px 15px;
}
.above.small_nav #nav .thst-menu > li {
  padding:24px 0;
}
.above.small_nav header .main-title a {
  padding:25px 0;
}
.above.small_nav #nav .thst-menu li.menu-item-has-children .sub-menu {
  top:76px;
}
.above.small_nav #nav .thst-menu li.menu-item-has-children .sub-menu .sub-menu {
  top: 0;
}

/* Menu | Sticky & Transparent */
.above.nav-transparent.has-featured-image.nav-not-sticky,
.above.nav-transparent.has-featured-image.large_nav {
  background-color: rgba(0,0,0,0.15);
  position: absolute;
  top:0;
  width:100%;
  z-index:10;
}


/* Menu | Logo */
.above .header {
  display: flex;
  align-items: center;
  height: 110px;
  order: 1;
}
.above.small_nav .header {
  height: 80px;
}
.above .logo.with-img {
  max-height: 100%;
}
.above .logo.with-img a {
  opacity:1;
}
.above .logo.with-img img {
  max-width: 100%;
  max-height: 90px;
  display: block;
}
.above .logo.with-img img.retina {
  display:none;
}
.above.nav-not-sticky .logo.with-img img.sticky {
  display:none;
}
.above.large_nav .logo.with-img img.sticky {
  display:none;
}
.above.small_nav .logo.with-img img.sticky {
  display:block;
  max-height:60px;
}
.above.small_nav .logo.with-img img.sticky.retina {
  display:none;
}
.above.small_nav .logo.with-img img.regular {
  display:none;
}


/* Menu | Invisible Navigation Placeholder */
.nav-placeholder {
  float: none;
  height: 110px;
  position: absolute;
  top:0;
  width: 100%;
  opacity: 0;
  z-index: -1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-placeholder li {
  padding: 40px 0;
}
.nav-placeholder p {
  margin:0;
  line-height: 1;
}
.nav-placeholder.show {
  position: static;
}
.nav-placeholder.nav-transparent.has-featured-image {
  display: none !important;
}


/* 2.1 | Header (Site title & logo)
------------------------------------------*/
.header a:link,
.header a:visited {
  color: #eee;
}
.header a:hover {
  color: #fff;
}
header .main-title {
  margin: 0;
}
header .main-title a {
  background-position:center left;
  background-repeat:no-repeat;
}
header .main-title a:link,
header .main-title a:visited {
  padding:42px 0;
  display: block;
  font-size: 24px;
  font-size: calc( 1rem + 0.42vw );
  font-weight: 600;
  color: #fff;
  opacity:1;
}
header #menu {
  padding: 15px 0;
}
#top .block {
  text-align:left;
}

/* 2.2 | Navigation
------------------------------------------*/
#nav {
  line-height: 30px;
  z-index: 200;
  position: relative;
  width: auto;
  color: #fff;
  display: block;
  margin-right: 0;
  margin-left: auto;
  order: 2;
}
#nav ul, #nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav .thst-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
  text-align: right;
}
#nav .thst-menu li {
  display: inline-block;
  position: relative;
  padding: 40px 0;
  z-index: 10;
}
#nav .thst-menu li a {
  padding: 43px 15px;
  color: #fff;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#nav .thst-menu li:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


/* Menu | Drop Down (Level 1) */
/* Closed State */
#nav .thst-menu li .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  min-width: 200px;
  width: auto;
  top: 80%;
  white-space: nowrap;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

/* Open State */
#nav .thst-menu li:hover > .sub-menu {
  visibility: visible;
  top: 100%;
  opacity: 1;
  z-index: 1;
  transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}
#nav .thst-menu li > .sub-menu li {
  width: auto;
  min-width: 200px;
  padding: 0;
  display: block;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
#nav .thst-menu li > .sub-menu li a:link,
#nav .thst-menu li > .sub-menu li a:visited {
  padding: 10px 25px;
  display: block;
  color: #fff;
  background-color: #199fdd;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 1;
}
#nav.responsive-menu-inactive .thst-menu li:hover > .sub-menu li a:hover {
  color: #fff;
  display: block;
}

/* Secondary Menu */
#nav .thst-menu li > .sub-menu li > .sub-menu {
  position: absolute;
  left: 95%;
  top: 0;
  border: 0;
  z-index: 9999;
}
#nav .thst-menu li:hover > .sub-menu li:hover > .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 9999;
}

.navigation .menu {
  padding: 40px 0;
  text-align: right;
}
.small_nav .navigation .menu {
  padding: 22px 0;
}
.nav-search-form {
  position: relative;
  font-size: 18px;
  margin-right: 0;
  order: 4;
}
.nav-search-form .open-search-bar {
  margin: 38px 0 38px 10px;
  display: inline-block;
  padding: 8px 0 8px 8px;
  line-height: 1;
}
.small_nav .nav-search-form .open-search-bar {
  margin: 21px 0 21px 10px;
}
.nav-search-form .search-form-drop {
  position: absolute;
  top: 111px;
  left: 10px;
  padding: 10px;
  width: 225px;
  display:none;
  background: rgba(0,0,0,0.4);
  transform: translateX(-80%);
}
.small_nav .nav-search-form .search-form-drop {
  top: 80px;
}
.nav-search-form .search-form-drop:after {
  bottom: 100%;
  left: 8%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: rgba(255,255,255,1);
  border-width: 6px;
  margin-left: auto;
  right: 24px;
}
.nav-search-form .search-form-drop.open {
  display: block;
  z-index: 10;
}
.nav-search-form .search-container {
  background: transparent;
  border:none;
}
.nav-search-form .search-container #s-nav {
  padding:10px;
  font-size: 14px;
  line-height: 1.2;
  border:0;
  border-radius: 0;
  width:100%;
  color:#282d31;
}
.nav-search-form .search-container #searchsubmit-nav {
  padding:10px;
  background:none;
  border-radius: 0;
  display:none;
}

/* Responsive Menu Button */
.open-menu {
  display: none;
}


/*
 * 3 | Latest Episode ("Featured Front Page Header")
 *-----------------------------------------------------------------*/

/* 3.1 | Subscribe Box
------------------------------------------*/
.main_subscribe {
  background-color: #e9e9e9;
  padding:45px 0;
}
.main_subscribe .content {
  text-align:center;
}


/* 3.2 | Loading Header Image
------------------------------------------*/
#loading_bg {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  opacity: 1;
  z-index: 99;
  text-align: center;
  background: #191c1f;
  visibility: visible;
  opacity:1;
  transition: visibility 0.5s linear 0.5s,opacity 0.5s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading_bg.hide_bg {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.5s;
}
#loading_bg .cricle-spinner {
}


/* 3.2.1 | Header with Album Art
------------------------------------------*/
.main-featured-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  margin-bottom: 64px;
}
.main-featured-container .img {
  width: 450px;
  margin-left: 42px;
  order: 2;
}
.main-featured-container .img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.main-featured-container.fh-audio-art-left .img {
  order: 1;
  margin-right: 42px;
  margin-left: 0;
}
.main-featured-container .img.fh-audio-art-rounded {
  border-radius: 3px;
  overflow: hidden;
}
.main-featured-container .img.fh-audio-art-round {
  border-radius: 10px;
  overflow: hidden;
}
.latest-episode .main-featured-container,
.front-page-header .main-featured-container {
  margin: 64px 0 54px 0;
}
.latest-episode.nav-sticky .main-featured-container,
.front-page-header.nav-sticky .main-featured-container {
  margin: 64px 0 54px 0;
}
.has-featured-image .latest-episode.nav-transparent .main-featured-container,
.has-featured-image .front-page-header.nav-transparent .main-featured-container {
  margin: 174px 0 54px 0;
}


/* Text */
.main-featured-container .main-featured-post,
.main-featured-container .text {
  margin-top: 0;
  margin-bottom: 0;
  width: 60%;
  width: calc(100% - 450px);
  order: 1;
}
.has-featured-image .latest-episode.nav-transparent .main-featured-container .main-featured-post,
.has-featured-image .front-page-header.static.nav-transparent .main-featured-container .text,
.has-featured-image .front-page-header.slideshow.nav-transparent .main-featured-container .text,
.front-page-header.static.nav-transparent .main-featured-container .text,
.front-page-header.slideshow.nav-transparent .main-featured-container .text {
  margin-top: 0;
  margin-bottom: 0;
}
.has-featured-image .front-page-header.slideshow.nav-transparent .main-featured-container {
  margin-bottom: 0;
}
.main-featured-container.fh-audio-art-left .main-featured-post,
.main-featured-container.fh-audio-art-left .text {
  order: 2;
}
.front-page-header.static .main-featured-container .text,
.latest-episode .main-featured-container .main-featured-post {
  margin-top: 0;
  margin-bottom: 0;
}
.latest-episode .main-featured-container .main-featured-post.audio.audio-url, 
.front-page-header .main-featured-container .text.audio {
  width: 100%;
}


.fh-audio-player-left .latest-episode .main-featured-container.has-post-thumbnail .main-featured-post.audio.audio-url, 
.fh-audio-player-left .front-page-header .main-featured-container.has-post-thumbnail .text.audio {
  width: 60%;
  width: calc(100% - 450px);
}
.fh-audio-player-right .latest-episode .main-featured-container.has-post-thumbnail .main-featured-post.audio.audio-url, 
.fh-audio-player-right .front-page-header .main-featured-container.has-post-thumbnail .text.audio {
  width: 60%;
  width: calc(100% - 450px);
}
.fh-audio-player-center .latest-episode .main-featured-container.has-post-thumbnail .main-featured-post.audio.audio-url, 
.fh-audio-player-center .front-page-header .main-featured-container.has-post-thumbnail .text.audio {
  width: 60%;
  width: calc(100% - 450px);
}

/* Indigo */
.front-page-indigo .latest-episode .main-featured-container .main-featured-post, 
.front-page-indigo .latest-episode.nav-transparent .main-featured-container .main-featured-post, 
.front-page-indigo .front-page-header .main-featured-container .text, 
.front-page-indigo .front-page-header.nav-transparent .main-featured-container .text {
  margin-top: 0;
  margin-bottom: 0;
}

/* Slideshow */
.front-page-header.slideshow .main-featured-container {
  padding-bottom: 150px;
  padding-bottom: 184px;
  margin-bottom: 0;
}
.front-page-header.slideshow .main-featured-container .text {
  padding-bottom: 0;
  margin-top:0;
}

.front-page-classic-template.front-page-transparent-audio-inactive.front-page-custom-color-audio-inactive .front-page-header .audio_player.regular-player,
.front-page-classic-template.front-page-transparent-audio-inactive.front-page-custom-color-audio-inactive .latest-episode .audio_player.regular-player {
  background-color: transparent;
}


/* 3.3 | Latest Episode (Static)
------------------------------------------*/
.content_page_thumb {
  position: relative;
  background-repeat: repeat;
}
.latest-episode {
  background-color: #24292c;
  background-repeat: repeat-y;
  padding: 0;
  color: #fff;
  position: relative;
}
.latest-episode .main-featured-post .powerpress_links {
  display: none;
}
.latest-episode.nav-solid.nav-has-border {
  border-top-width: 1px;
  border-top-style: solid;
}
.latest-episode.front-header {
  padding: 0;
  position: relative;
}
.latest-episode.front-header .translucent {
  padding: 0;
}


/* Latest Episode | Content */
.latest-episode .main-featured-post {
  margin: 64px 0 32px 0;
}
.latest-episode.nav-sticky .main-featured-post {
  margin: 64px 0 32px 0;
  margin-top: calc(1.5rem + 1.88vw);
}
.has-featured-image .latest-episode.nav-transparent .main-featured-post {
  margin: 174px 0 32px 0;
}

/* Latest Episode | Mini Title */
.latest-episode .main-featured-post .mini-title-container {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.latest-episode .main-featured-post .mini-title {
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
  color: #199fdd;
  padding: 0;
  font-weight: bold;
  margin-bottom: 0;
  display: block;
}

/* Latest Episode | H2 Title */
.latest-episode h2 {
  margin: 0 0 24px 0;
  padding: 0;
  font-size: 42px;
  font-size: calc( 2rem + 0.52vw );
}

/* Latest Episode | H3 Title */
.latest-episode h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: #a8a9a9;
}

/* Latest Episode | Links */
.latest-episode .main-featured-post a:link,
.latest-episode .main-featured-post a:visited {
  color: #fff;
}
.latest-episode .main-featured-post a:hover {
  color: #eee;
}

/* Latest Episode | Excerpts */
.latest-episode .main-featured-post .featured-excerpt {
  border-radius: 7px;
  color: #919495;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px 0;
}
.latest-episode .main-featured-post .featured-excerpt.excerpt-position-below {
  margin-top: 24px;
  margin-bottom: 0;
}
.latest-episode .main-featured-post .featured-excerpt.style-1 {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 32px 42px;
}
.latest-episode .main-featured-post .featured-excerpt p {
  display: inline;
  margin: 0;
  font-size: 18px;
  font-size: calc( 1rem + 0.1vw);
}
.latest-episode .main-featured-post .featured-excerpt .more-link {
  opacity: 1;
  display: inline-block;
  line-height: 1;
}
.latest-episode .main-featured-post .pull-right .more-link,
.latest-episode .main-featured-post .pull-left .more-link {
  margin-top: 24px;
  font-size: 14px;
  font-weight: bold;
}

/* Latest Episode | Excerpts --> Featured Button */
.latest-episode .main-featured-post .featured-button-container,
.front-page-header .text .featured-button-container {
  margin-bottom: 32px;
}
.latest-episode .main-featured-post .embed-alignment-left .featured-button-container,
.front-page-header .text .embed-alignment-left .featured-button-container,
.latest-episode .main-featured-post .embed-alignment-right .featured-button-container,
.front-page-header .text .embed-alignment-right .featured-button-container {
	margin-top: 24px;
	margin-bottom: 0;
}
.latest-episode .main-featured-post .embed-alignment-center .excerpt-below .featured-button-container,
.front-page-header .text .embed-alignment-center .excerpt-below .featured-button-container {
	margin-top: 24px;
	margin-bottom: 0;
}
.latest-episode .main-featured-post .featured-button-container .butn {
}
.latest-episode .main-featured-post .featured-button-container .butn .icon,
.front-page-header .text .featured-button-container .butn .icon {
  font-size: 1rem;
  margin-right: 12px;
}
.latest-episode .main-featured-post .featured-button-container .butn.medium .icon,
.front-page-header .text .featured-button-container .butn.medium .icon {
  font-size: 1.2rem;
  margin-right: 14px;
}
.latest-episode .main-featured-post .featured-button-container .butn.large .icon,
.front-page-header .text .featured-button-container .butn.large .icon {
  font-size: 1.4rem;
  margin-right: 16px;
}
.latest-episode .main-featured-post .featured-button-container .butn .icon.fa-play,
.front-page-header .text .featured-button-container .butn .icon.fa-play {
  font-size: 0.8rem;
}
.latest-episode .main-featured-post .featured-button-container .butn.medium .icon.fa-play,
.front-page-header .text .featured-button-container .butn.medium .icon.fa-play {
  font-size: 1rem;
}
.latest-episode .main-featured-post .featured-button-container .butn.large .icon.fa-play,
.front-page-header .text .featured-button-container .butn.large .icon.fa-play {
  font-size: 1.2rem;
}

/* Latest Episode | Featured Audio Player */
.latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player, 
.latest-episode .main-featured-post.audio.audio-url .powerpress_player {
  width: 100%;
}
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player, 
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .main-featured-post.audio.audio-url .powerpress_player {
  padding-left: 0;
  padding-right: 0; 
}

/* Latest Episode | Featured Video Player */
.latest-episode .main-featured-post .content {
  margin-top: 0;
}
.latest-episode .main-featured-post .wp-playlist.wp-audio-playlist {
  margin-top: 32px;
}
.latest-episode .main-featured-post .row .wp-playlist.wp-audio-playlist,
.latest-episode .main-featured-post .row .wp-playlist.wp-video-playlist {
  margin-top: 0;
}

/* Latest Episode | Playlists */
.front-page-header .wp-playlist.wp-audio-playlist, 
.front-page-header .wp-playlist.wp-video-playlist,
.latest-episode .wp-playlist.wp-audio-playlist, 
.latest-episode .wp-playlist.wp-video-playlist {
  margin-top: 0;
  margin-bottom: 0;
}


/* 3.4 | Scheduled Section
------------------------------------------*/
.next-week {
  background-color: rgba(0,0,0,0.25);
  padding: 32px 0;
  padding: calc(1rem + 0.83vw) 0;
  border-radius: 7px 7px 0 0;
}
.nextweek-line .next-week {
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.next-week .content {
  text-align: left;
  margin: 0;
}
.next-week .content.scheduled {
  text-align: left;
  padding: 0 42px 0 42px;
  padding: 0 calc(1rem + 1.35vw) 0 calc(1rem + 1.35vw);
}
.nextweek-line .next-week .content.scheduled {
  padding-left: 0;
}
.next-week .content.buttons {
  display: flex;
  justify-content: flex-end;
  line-height: 15px;
  padding: 0 42px 0 0;
  padding: 0 calc(1rem + 1.35vw) 0 0;
}
.nextweek-line .next-week .content.buttons {
  padding-right: 0;
}

.next-week.next-week-hide .content.buttons {
  justify-content: space-between;
  padding-left: 42px;
  padding-left: calc(1rem + 1.35vw);
}
.next-week.next-week-hide .content.buttons .butn {
  width: 49%;
}
.next-week.next-week-hide .content.buttons .butn:last-child {
  margin-left: 0;
}
.next-week .mini-title {
  color: #707172;
  font-size: 12px;
  font-size: calc( 0.625rem + 0.1vw );
  font-weight: 600;
  letter-spacing: 2px;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.next-week h3 {
  color: #a8a9a9;
  font-size: 18px;
  font-size: calc( 1rem + 0.1vw );
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.next-week .schedule-message {
  font-size: 14px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.next-week .butn {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 20px 24px;
  text-align: center;
}
.next-week .butn:last-of-type {
  margin-left: 24px;
}



/*
 * 4 | Featured Front Header (New & Improved)
 *-----------------------------------------------------------------*/
/* 4.1 | Text & Media Players
------------------------------------------*/
.front-page-header {
  color: #fff;
  position: relative;
}

/* Featured Front Header | Mini title */
.front-page-header .text .mini-title-container {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.front-page-header .text .mini-title {
  color: #199fdd;
  font-weight: bold;
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
  padding: 0;
  display: block;
  margin-bottom: 0;
}

/* Featured Front Header | H2 Title */
.front-page-header .text h2 {
  font-weight: 600;
  font-size: 42px;
  font-size: calc(2rem + 0.52vw);
  margin: 0 0 24px 0;
  padding: 0;
}
.front-page-header .text .pulls-right h2,
.front-page-header .text .pulls-left h2 {
  font-size: 30px;
}
.front-page-header .text h3 {
  margin:0;
  padding:0;
  font-size:18px;
  font-weight: 600;
  color:#a8a9a9;
}
.front-page-header .text h2 a:link,
.front-page-header .text h2 a:visited {
  color:#fff;
}

/* Featured Front Header | Excerpt */
.front-page-header .featured-excerpt {
  border-radius: 7px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.front-page-header .featured-excerpt.excerpt-position-below {
  margin-top: 24px;
  margin-bottom: 0;
}
.front-page-header .featured-excerpt.style-1 {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
}
.front-page-header .text p {
  display: inline;
  font-size: 20px;
  font-size: calc( 1rem + 0.21vw);
  margin:0;
}
.front-page-header .text .featured-excerpt .more-link {
  opacity: 1;
  letter-spacing: 1px;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}
.front-page-header .text .pull-right .more-link,
.front-page-header .text .pull-left .more-link {
  margin-top: 24px;
  font-size: 14px;
  font-weight: bold;
}

/* Audio & Video Players */
/* Featured Front Header | Players */
.latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player,
.latest-episode .main-featured-post.audio.audio-url .powerpress_player,
.front-page-header .text.audio .audio_player.regular-player, 
.front-page-header .text.audio .powerpress_player {
  width: 100%;
}
.front-page-custom-color-audio-active .latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player,
.front-page-custom-color-audio-active .latest-episode .main-featured-post.audio.audio-url .powerpress_player,
.front-page-custom-color-audio-active .front-page-header .text.audio .audio_player.regular-player, 
.front-page-custom-color-audio-active .front-page-header .text.audio .powerpress_player {
  padding-left: 32px;
  padding-right: 32px;
}
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .main-featured-post.audio.audio-url .powerpress_player,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .text.audio .audio_player.regular-player, 
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .text.audio .powerpress_player {
  padding-left: 0;
  padding-right: 0; 
}
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .main-featured-post.audio.audio-url .powerpress_player,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .audio_player.regular-player,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .powerpress_player {
  padding: 0;
  background: transparent;
}
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .audio_player.regular-player .mejs-container.mejs-audio,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .powerpress_player .mejs-container.mejs-audio,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .audio_player.regular-player .mejs-controls,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .powerpress_player .mejs-controls {
  background: transparent;
}
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .latest-episode .mejs-video .mejs-controls,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .front-page-header .mejs-video .mejs-controls,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .mejs-video .mejs-controls,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .mejs-video .mejs-controls,

.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .latest-episode .mejs-video .mejs-controls:hover, 
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .latest-episode .mejs-video .mejs-overlay-button,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .latest-episode .mejs-video .mejs-overlay-button:hover,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .front-page-header .mejs-video .mejs-controls:hover, 
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .front-page-header .mejs-video .mejs-overlay-button,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-indigo .front-page-header .mejs-video .mejs-overlay-button:hover,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .mejs-video .mejs-controls:hover, 
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .mejs-video .mejs-overlay-button,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .latest-episode .mejs-video .mejs-overlay-button:hover,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .mejs-video .mejs-controls:hover, 
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .mejs-video .mejs-overlay-button,
.front-page-custom-color-audio-active.front-page-transparent-audio-active .front-page-header .mejs-video .mejs-overlay-button:hover {
  background: transparent;
}
.front-page-header .embed_code {
  text-align: right;
}
.front-page-header .video_player {
  padding: 0;
}
.front-page-header .text .powerpress_links {
  display:none;
}



/* 4.2 | Front Page Header (Text Mode)
------------------------------------------*/
.front-page-header.text .content-text {
  padding: 75px 0;
}
.front-page-header.text.fh-alignment-left .content-text {
  text-align: left;
}
.front-page-header.text.fh-alignment-center .content-text {
  text-align: center;
}
.front-page-header.text.fh-alignment-right .content-text {
  text-align: right;
}
.front-page-header.text.nav-transparent .content-text {
  padding: 175px 0 75px 0;
}
.front-page-header.text .content-text h2 {
  color: #ffffff;
  margin: 0;
  font-size: 42px;
  font-size: calc( 2rem + 0.52vw );
}
.front-page-header.text .content-text .content-blurb {
  margin-top: 24px;
}


/* 4.3 | Featured Front Header (Static)
------------------------------------------*/
.front-page-header.static {
  background-color: #24292c;
}
.header-filter-active .front-page-header.static.nav-sticky .inside {
  padding:0;
}
.header-filter-active .front-page-header.static.has-header .inside,
.header-filter-active .front-page-header.slideshow .has-header .inside {
  background:rgba(0,0,0,0.5);
}
.front-page-header.static .text {
  margin: 64px 0 42px 0;
  margin-top: calc(1.5rem + 1.88vw);
  padding: 0;
  color: #fff;
}
.has-featured-image .front-page-header.static.nav-transparent .text {
  margin-top: 150px;
  margin-top: 174px;
}
.front-page-header.static.nav-sticky.nw-hidden .text {
  padding:0 0 75px 0;
}


/* 4.4 | Featured Front Header (Slideshow)
------------------------------------------*/
.flexslider-container {
  background-color: #24292c;
  position: relative;
}
.front-page-header.slideshow.flexslider.loading_featured {
  z-index:999;
  height: 300px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}
.front-page-header.slideshow.flexslider.loading_featured .slide {
  opacity: 0;
}
.front-page-header.slideshow.flexslider .slide {
  opacity: 1;
}
.front-page-header.slideshow.flexslider .flex-control-nav {
  display:none;
}
.front-page-header.slideshow.flexslider {
  border:0;
  border-radius: 0;
  margin:0;
  background-color: transparent;
  box-shadow: none;
  direction: ltr;
  overflow:hidden; /* new 1.8.9 */
}
.header-filter-active .front-page-header.slideshow .has-header .inside {
  background: rgba(0,0,0,0.5);
}
.front-page-header.slideshow .text {
  margin: 64px 0 0 0;
  margin-top: calc(1.5rem + 1.88vw);
  padding: 0 0 150px 0;
  color: #fff;
}
.has-featured-image .front-page-header.slideshow.nav-transparent .text {
  margin-top: 174px;
}
.front-page-header.slideshow.nav-sticky.nw-hidden .text {
  padding: 0 0 75px 0;
}
.flexslider-container .next-week {
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 1170px;
  z-index: 9;
}

/* Featured Front Header (Slideshow) | Arrows */
.front-page-header.slideshow .flex-direction-nav a {
  background-color: transparent;
  background-image: url("img/slide-arrows.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  top: 50%;
  width: 32px;
  height: 52px;
  border-radius: 0;
}
.front-page-header.slideshow .flex-direction-nav .flex-next {
  background-position: 100% 0;
}
.front-page-header.slideshow:hover .flex-direction-nav .flex-next {
  right: 100px;
  right: calc( (100vw - 1170px) / 4);
  transform: translate3d(50%,0,0);
}
.front-page-header.slideshow:hover .flex-direction-nav .flex-prev {
  left: 100px;
  left: calc( (100vw - 1170px) / 4);
  transform: translate3d(-50%,0,0);
}
.front-page-header.slideshow.dark-arrows .flex-direction-nav a {
  background-image: url("img/slide-arrows-light-dark.png");
  background-position: 0 100%;
}
.front-page-header.slideshow.dark-arrows .flex-direction-nav .flex-next {
  background-position: 100% 100%;
}


/* Featured Front Header (Slideshow) | Loading Featured Slides */
.flexslider-container .front-page-header.flexslider.loading_slides {
  height: 500px;
  background-color: #fff;
  background-image: url(img/270.GIF);
  background-repeat: no-repeat;
  background-position: center;
}

/* Featured Front Header (Slideshow) | Flexslider: Placeholder when empty. */
.empty-slideshow .placeholder.inside {
  padding:42px 0 54px 0;
}
.empty-slideshow .placeholder.inside p {
  margin:0;
  color:#ccc;
  font-size: 14px;
  padding-top:24px;
}

/* Parallax */
.parallax-container {
  min-height: 400px;
  background: transparent;
}



/* 4.5 | Latest Episode & Front Page Header
----------------------------------------- */

/* Latest Episode & Front Page Header | Embedded Content */
.front-page-header .video-text.heading,
.latest-episode .main-featured-post .video-text.heading {
  margin-top:24px;
}
.front-page-header .video-text.heading-below,
.latest-episode .main-featured-post .video-text.heading-below {
  margin-top:0;
}
.front-page-header .video-text.excerpt-below,
.latest-episode .main-featured-post .video-text.excerpt-below {
  margin-top:24px;
  margin-bottom:0;
}
.front-page-header .video-text.align-left,
.latest-episode .main-featured-post .video-text.align-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.front-page-header .video-text.align-center,
.latest-episode .main-featured-post .video-text.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.front-page-header .video-text.align-right,
.latest-episode .main-featured-post .video-text.align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* Latest Episode & Front Page Header | Embedded Content (new) */
.front-page-header .row,
.latest-episode .row {
  width: 100%;
}
.front-page-header .embed-container,
.latest-episode .embed-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* Embedded Aligmentment = Center + Text Alignment = Center */
.front-page-header .embed-container.embed-alignment-center.text-alignment-left,
.latest-episode .embed-container.embed-alignment-center.text-alignment-left {
  align-items: flex-start;
}

/* Embedded Aligmentment = Center + Text Alignment = Center */
.front-page-header .embed-container.embed-alignment-center.text-alignment-center,
.latest-episode .embed-container.embed-alignment-center.text-alignment-center {
  align-items: center;
}

/* Embedded Aligmentment = Center + Text Alignment = Right */
.front-page-header .embed-container.embed-alignment-center.text-alignment-right,
.latest-episode .embed-container.embed-alignment-center.text-alignment-right {
  align-items: flex-end;
}


.front-page-header .embed-col.video-text.heading,
.latest-episode .main-featured-post .embed-col.video-text.heading {
  margin-top: 0;
}
.front-page-header .embed-container.embed-alignment-center,
.latest-episode .embed-container.embed-alignment-center {
  flex-direction: column;
}
.front-page-header .embed-container.text-alignment-left h2,
.latest-episode .embed-container.text-alignment-left h2,
.front-page-header .embed-container.text-alignment-left .featured-excerpt,
.latest-episode .embed-container.text-alignment-left .featured-excerpt,
.front-page-header .embed-container.text-alignment-left .mini-title-container,
.latest-episode .embed-container.text-alignment-left .mini-title-container {
  text-align: left;
}
.front-page-header .embed-container.text-alignment-right h2,
.latest-episode .embed-container.text-alignment-right h2,
.front-page-header .embed-container.text-alignment-right .featured-excerpt,
.latest-episode .embed-container.text-alignment-right .featured-excerpt,
.front-page-header .embed-container.text-alignment-right .mini-title-container,
.latest-episode .embed-container.text-alignment-right .mini-title-container,
.front-page-header .embed-container.text-alignment-right .featured-button-container,
.latest-episode .embed-container.text-alignment-right .featured-button-container {
  text-align: right;
}
.front-page-header .text .embed-container.text-alignment-right .mini-title-container {
	justify-content: flex-end;
}
.front-page-header .embed-container.text-alignment-center h2,
.latest-episode .embed-container.text-alignment-center h2,
.front-page-header .embed-container.text-alignment-center .featured-excerpt,
.latest-episode .embed-container.text-alignment-center .featured-excerpt,
.front-page-header .embed-container.text-alignment-center .mini-title-container,
.latest-episode .embed-container.text-alignment-center .mini-title-container,
.front-page-header .embed-container.text-alignment-center .featured-button-container,
.latest-episode .embed-container.text-alignment-center .featured-button-container {
  text-align: center;
}
.front-page-header .text .embed-container.text-alignment-center .mini-title-container {
	justify-content: center;
}
.front-page-header .row .embed-container .video_player,
.latest-episode .row .embed-container .video_player,
.front-page-header .row .embed-container .audio_player,
.latest-episode .row .embed-container .audio_player {
  padding: 0;
}
.front-page-header .embed-container .embed-col iframe,
.latest-episode .embed-container .embed-col iframe {
  display: block;
  width: 100%;
}
.front-page-header .embed-col-text-with-position.video-text.excerpt-below,
.latest-episode .main-featured-post .embed-col-text-with-position.video-text.excerpt-below {
  margin-top: 0;
  margin-bottom: 0;
}
.front-page-header .embed-col-text-with-position.video-text.excerpt-below .featured-excerpt,
.latest-episode .main-featured-post .embed-col-text-with-position.video-text.excerpt-below .featured-excerpt {
  margin-top: 24px;
  margin-bottom: 0;
}

/* Latest Episode & Front Page Header | Video Player & Embeds Excerpts (Align Left & Rigth) */
@media screen and (min-width: 769px) {
  .front-page-header .embed-container.embed-alignment-right .featured-excerpt,
  .latest-episode .embed-container.embed-alignment-right .featured-excerpt,
  .front-page-header .embed-container.embed-alignment-left .featured-excerpt,
  .latest-episode .embed-container.embed-alignment-left .featured-excerpt {
    margin-bottom: 0;
    margin-top: 0;
  }
}

/* Latest Episode & Front Page Header | Audio and Video Players */
.front-page-header .audio_player.audio,
.latest-episode .audio_player.audio {
  padding: 40px 0 20px 0;
}
.front-page-header .row .video_player,
.latest-episode .row .video_player {
  padding: 10px 0;
}
.front-page-header .audio_player iframe,
.latest-episode .audio_player iframe {
  width: 100%;
}
.front-page-header .mejs-container.wp-audio-shortcode,
.front-page-header .mejs-embed,
.front-page-header .mejs-embed body,
.front-page-header .mejs-container.wp-audio-shortcode .mejs-controls,
.front-page-header .powerpress_player .mejs-container.wp-audio-shortcode .mejs-controls,
.latest-episode .mejs-container.wp-audio-shortcode,
.latest-episode .mejs-embed,
.latest-episode .mejs-embed body,
.latest-episode .mejs-container.wp-audio-shortcode .mejs-controls,
.latest-episode .powerpress_player .mejs-container.wp-audio-shortcode .mejs-controls {
  background-color: transparent;
}
.front-page-header .powerpress_player .mejs-container.wp-audio-shortcode,
.latest-episode .powerpress_player .mejs-container.wp-audio-shortcode {
  margin-top: 0;
}
.front-page-header .mejs-container.wp-audio-shortcode .mejs-controls,
.latest-episode .mejs-container.wp-audio-shortcode .mejs-controls {
  padding: 0;
}
.front-page-header .wp-audio-playlist .mejs-container.mejs-audio .mejs-controls,
.latest-episode .wp-audio-playlist .mejs-container.mejs-audio .mejs-controls {
  background:transparent;
}
.front-page-header .mejs-controls .mejs-time-rail .mejs-time-total,
.front-page-header .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.latest-episode .mejs-controls .mejs-time-rail .mejs-time-total,
.latest-episode .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: rgba(0, 0, 0, 0.6);
}


/*
 * 5 | Front Page List of Posts
 *-----------------------------------------------------------------*/
.list-of-episodes {
  padding: 42px 0 72px 0;
  padding: calc(1.5rem + 0.94vw) 0 calc(2rem + 2.08vw) 0 ;
  background-color:#e5e5e5;
}


/* 5.1 | Front Page: List Posts
------------------------------------------ */
.list-of-episodes article {
  display: flex;
  margin-top: 42px;
  background: #fff;
  width: 100%;
}
.list-of-episodes article:first-of-type {
  margin-top: 0;
}
.list-of-episodes article .featured-image {
  height:auto;
  overflow:hidden;
  position: relative;
  border-radius: 7px 7px 0 0;
  border-radius: 0;
  width: 260px;
}
.list-of-episodes.entries-round-corners article {
  border-radius:7px;
  overflow: hidden;
}
.list-of-episodes.entries-round-corners.entries-corners-img-only article {
  border-radius: 0;
}
.list-of-episodes.entries-round-corners.entries-corners-img-only article .featured-image img {
  border-radius:7px;
  overflow: hidden; 
}
.list-of-episodes article .featured-image .hover {
  background-color:rgba(238,82,65,0.50);
  position:absolute;
  text-align:right;
  top:0;
  left:0;
  right:0;
  bottom:0;
  opacity:0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.list-of-episodes.entries-round-corners.entries-corners-img-only article .featured-image .hover {
  border-radius: 7px;
}

.list-of-episodes article .featured-image:hover .hover {
  opacity:1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.list-of-episodes article .featured-image .hover .icon {
  position: absolute;
  color: #fff;
  top: 24px;
  right: 24px;
  opacity: 1;
  background-color: #fff;
  color: #199fdd;
  border-radius: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-of-episodes article .featured-image .hover .icon .fa:before,
.list-of-episodes article .featured-image .hover .icon .fas:before {
  font-size: 12px;
  display: block;
}
.list-of-episodes article .featured-image a {
  opacity: 1;
}
.list-of-episodes article .featured-image img {
  width: 260px;
  height: 260px;
  display: block;
}
.list-of-episodes article .featured-image .hover {
  background-color: rgba(0,0,0,0.75);
  position: absolute;
  text-align: right;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.touch .list-of-episodes article .featured-image .hover  {
  opacity:0;
  display:none;
}
.list-of-episodes article .featured-image:hover .hover {
  opacity:1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.touch .list-of-episodes article .featured-image:hover .hover {
  opacity: 0;
  display: none;
}
.list-of-episodes article .post-content .inside {
  padding: 32px;
}
.list-of-episodes article.has-post-thumbnail .post-content {
  min-height: 260px;
  width: calc( 100% - 260px );
}
.list-of-episodes article .post-header {
  padding: 0 0 16px 0;
  margin: 0 !important;
}
.list-of-episodes article .post-header ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
  font-size: 13px;
  font-size: calc(0.688rem + 0.1vw);
  text-transform: uppercase;
}
.list-of-episodes article .post-header ul a:link,
.list-of-episodes article .post-header ul a:visited {
  color: #199fdd;
}
.list-of-episodes article .post-header ul a:hover {
  color: #1a6e95;
}
.list-of-episodes article .post-header ul li {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 5px;
}
.list-of-episodes article .post-header h2 {
  font-size: 32px;
  font-size: calc(1.5rem + 0.42vw);
  font-weight: 700;
  margin: 4px 0 0 0;
}
.list-of-episodes article .post-header h2 a:link,
.list-of-episodes article .post-header h2 a:visited {
  color:#444;
}
.list-of-episodes article .post-header h2 a:hover {
  color:#333;
}
.list-of-episodes article .post-content p {
  font-size: 16px;
  line-height: 1.7;
  color:#646464;
  margin-top:10px;
}
.list-of-episodes article .post-footer {
  display:none;
}
.list-of-episodes .button-container {
  margin:40px 0 0 0;
  text-align: right;
}
.list-of-episodes article .more-link {
  margin:0;
  display:inline-block;
}

/* Set in Post */
.list-of-episodes.full-post article {
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
 }
 .list-of-episodes.full-post article .featured-image {
  margin-right:0;
  border-radius:3px;
  max-width:260px;
  max-height: 260px;
  overflow: initial;
 }
 .list-of-episodes.full-post article .featured-image a {
    width:260px;
    display: block;
 }
 .list-of-episodes.full-post article .featured-image img {
  width:260px;
  height:auto;
 }
 .list-of-episodes.full-post article .featured-image .hover .icon {
    top: 24px;
    width: 48px;
}
 .list-of-episodes.full-post article .inside {
  flex:auto;
  width:calc(100% - 260px);
  padding:30px 30px 30px 30px;
  background:#fff;
 }

/* Gallery Post */
.list-of-episodes.full-post article .gallery.flexslider {
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item a {
  opacity: 0.7;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item a:hover {
  opacity: 1;
}
.list-of-episodes.full-post article .gallery.flexslider {
  margin:20px 0 !important;
}
.list-of-episodes.full-post article .gallery.flexslider {
  margin:0;
}
.list-of-episodes.full-post article .gallery.flexslider {
  margin-bottom: 32px;
}
.list-of-episodes.full-post article .gallery.flexslider.loading_post {
  height: 300px;
  background-color: #fff;
  background-image: url(img/270.GIF);
  background-repeat: no-repeat;
  background-position: center;
}
.list-of-episodes.full-post article .gallery.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-of-episodes.full-post article .gallery.flexslider li.gallery-item {
  position: relative;
  margin-top: 0 !important;
  direction: ltr;
}
.list-of-episodes.full-post article .gallery.flexslider li.gallery-item .flex-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  color: #fff;
  text-align: center;
  background: #FF7F50;
  opacity:0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.list-of-episodes.full-post article .gallery.flexslider:hover li.gallery-item .flex-caption {
  opacity:1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.list-of-episodes.full-post article .gallery.flexslider li.gallery-item .flex-caption p {
  margin: 0;
  padding: 10px 15px;
}
.list-of-episodes.full-post article .gallery.flexslider img {
  border: 0 !important;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-control-thumbs {
  margin: 18px 0 0 0;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-control-thumbs li {
  width: 120px;
  padding: 0 22px 22px 0;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-control-thumbs li:last-child {
  padding: 0 0 2px 0;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-control-thumbs img {
  opacity: 1;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-direction-nav a {
  width: 48px;
  height: 80px;
  margin-top: -40px;
  display: block;
  background-image: url(img/flexslider-arrows.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 50%;
  z-index: 100;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 1;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-direction-nav .flex-next {
  background-position: 100% 16px;
  right: 0;
  -moz-transition-duration: 0.5s;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-direction-nav .flex-prev {
  left: 0;
  background-position: 0 16px;
  -moz-transition-duration: 0.5s;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-direction-nav .flex-next:hover {
  background-color: #206565;
}
.list-of-episodes.full-post article .gallery.flexslider .flex-direction-nav .flex-prev:hover {
  background-color: #206565;
}
.list-of-episodes.full-post article .gallery.flexslider .flexslider:hover .flex-next {
  opacity: 1;
  right: 10px;
  -moz-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.list-of-episodes.full-post article .gallery.flexslider .flexslider:hover .flex-prev {
  opacity: 1;
  right: 65px;
  left: auto;
  -moz-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

/* Grid Gallery */
.list-of-episodes.full-post article .gallery.grid,
.gallery.grid {
  margin: auto auto 42px auto !important;
  display: flex;
  flex-wrap: wrap;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item,
.gallery.grid .gallery-item {
  margin: 0 !important;
  position: relative;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item {
  width:33.3333%;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item img{
  width:100%;
  height:auto;
}
.list-of-episodes.full-post article .gallery.grid.three .gallery-item {
  width:33.3333%;
}
.list-of-episodes.full-post article .gallery.grid.four .gallery-item {
  width:25%;
}
.list-of-episodes.full-post article .gallery.grid.five .gallery-item {
  width:20%;
}
.list-of-episodes.full-post article .gallery.grid.six .gallery-item {
  width:16.6667%;
}
.list-of-episodes.full-post article .gallery.grid.seven .gallery-item {
  width:14.2857%;
}
.list-of-episodes.full-post article .gallery.grid.eight .gallery-item{
  width:12.5%;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item .flex-caption {
  position: absolute;
  left: 0;
  right:0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  font-size: 14px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.list-of-episodes.full-post article .gallery-item:hover .flex-caption {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.list-of-episodes.full-post article .gallery-item .flex-caption p {
  padding: 5px 10px;
  margin: 0;
  color: #fff;
}
.list-of-episodes.full-post article .gallery-item .image_cont {
  padding: 0;
}
.list-of-episodes.full-post article .gallery.grid .gallery-item .image_cont img {
  border: 0 !important;
}

/* List of Episodes */
.page .list-of-episodes .sidebar .widget {
  margin-bottom:40px;
}
.list-of-episodes.front-has-sidebar article .inside {
  padding:28px 24px;
}
.list-of-episodes.front-has-sidebar article .post-header {
  padding-bottom:0;
  margin-bottom:12px;
}
.list-of-episodes.front-has-sidebar article .post-header ul {
  margin:0;
  margin-bottom:6px;
}
.list-of-episodes.front-has-sidebar article .post-header ul,
.list-of-episodes.front-has-sidebar article .post-header ul li {
  line-height: 1;
}
.list-of-episodes.front-has-sidebar article .post-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}
.list-of-episodes.front-has-sidebar article .post-content {
  font-size: 16px;
  line-height: 1.7;
}
.list-of-episodes.front-has-sidebar.sidebar-round-corners .sidebar .widget {
  border-radius: 7px;
  overflow: hidden;
}



/* Front Page Header Indigo (New) ---- */
.front-page-indigo .latest-episode .main-featured-post,
.front-page-indigo .latest-episode.nav-transparent .main-featured-post,
.front-page-indigo .front-page-header .text,
.front-page-indigo .front-page-header.nav-transparent .text {
  margin-bottom: 54px;
}
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url > h2,
.front-page-indigo .front-page-header .text.audio > h2 {
  margin: 0 0 24px 0;
}
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url > .featured-excerpt,
.front-page-indigo .front-page-header .text.audio > .featured-excerpt {
  margin: 0 0 24px 0;
  background: rgba(255,226,127,0,5);
}
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url > div:last-of-type,
.front-page-indigo .front-page-header .text.audio > div:last-of-type {
  margin-bottom: 0;
}
.front-page-indigo .front-page-header.slideshow .text,
.front-page-indigo .front-page-header.nav-transparent.slideshow .text {
  margin-bottom: 0;
}

/* Front Page Header Indigo | Audio Player */
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.front-page-indigo .front-page-header .text.audio .audio-player-container {
  margin: 0 0 24px 0;
}
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url .audio-player-container .audio_player.regular-player,
.front-page-indigo .front-page-header .text.audio .audio-player-container .audio_player.regular-player,
.front-page-blog-template .latest-episode .main-featured-post.audio.audio-url .audio-player-container .audio_player.regular-player,
.front-page-blog-template .front-page-header .text.audio .audio-player-container .audio_player.regular-player {
  margin: 0;
}

/* Front Page Header Indigo | Audio Player (WP Player)*/
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.front-page-indigo .front-page-header .audio-player-container,
.front-page-indigo .front-page-header .powerpress_player,

.front-page-blog-template .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.front-page-blog-template .front-page-header .audio-player-container,
.front-page-blog-template .front-page-header .powerpress_player {
  width: 60%;
}
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player,
.front-page-indigo .latest-episode .main-featured-post.audio.audio-url .powerpress_player,
.front-page-indigo .front-page-header .audio_player.regular-player,
.front-page-indigo .front-page-header .powerpress_player,

.front-page-blog-template .latest-episode .main-featured-post.audio.audio-url .audio_player.regular-player,
.front-page-blog-template .latest-episode .main-featured-post.audio.audio-url .powerpress_player,
.front-page-blog-template .front-page-header .audio_player.regular-player,
.front-page-blog-template .front-page-header .powerpress_player {
  padding: 0 32px;
  overflow: hidden;
  border-radius: 7px;
  width: 100%;
}
.front-page-indigo .front-page-header .row .powerpress_player,
.front-page-indigo .latest-episode .row .powerpress_player,

.front-page-blog-template .front-page-header .row .powerpress_player,
.front-page-blog-template .latest-episode .row .powerpress_player {
  padding-top: 0;
  padding-bottom: 0;
}
.front-page-indigo .latest-episode .main-featured-post .audio_player .wp-audio-shortcode.mejs-audio,
.front-page-indigo .latest-episode .main-featured-post.audio .powerpress_player .wp-audio-shortcode.mejs-audio,
.front-page-indigo .front-page-header .audio_player .wp-audio-shortcode.mejs-audio,
.front-page-indigo .front-page-header .powerpress_player .wp-audio-shortcode.mejs-audio,

.front-page-blog-template .latest-episode .main-featured-post .audio_player .wp-audio-shortcode.mejs-audio,
.front-page-blog-template .latest-episode .main-featured-post.audio .powerpress_player .wp-audio-shortcode.mejs-audio,
.front-page-blog-template .front-page-header .audio_player .wp-audio-shortcode.mejs-audio,
.front-page-blog-template .front-page-header .powerpress_player .wp-audio-shortcode.mejs-audio
 {
  margin-top: 0;
}

/* Audio Players Width & Alignment */
.latest-episode .main-featured-post.audio,
.front-page-header .text.audio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.fh-alignment-left .text.audio {
  align-items: flex-start;
}
.fh-alignment-center .text.audio {
  align-items: center;
}
.fh-alignment-right .text.audio {
  align-items: flex-end;
}


.latest-episode .main-featured-post.audio.audio-url > .mini-title-container,
.front-page-header .text.audio > .mini-title-container {
  max-width: 65%;
  display: flex;
  align-items: center;
}
.latest-episode .main-featured-post.audio.audio-url > h2,
.front-page-header .text.audio > h2 {
  max-width: 65%;
}

/* Players & Embeds | Excerpt Width */
.latest-episode .main-featured-post.audio.audio-url > .featured-excerpt,
.front-page-header .text.audio > .featured-excerpt,
.embed-container.embed-alignment-center .featured-excerpt  {
  max-width: 65%;
}
.latest-episode .main-featured-post.audio.audio-url > .featured-excerpt.excerpt-full,
.front-page-header.text.excerpt-full .content-text .content-blurb,
.front-page-header .text.audio > .featured-excerpt.excerpt-full,
.embed-container.embed-alignment-center .featured-excerpt.excerpt-full {
  max-width: 100%;
}
.latest-episode .main-featured-post.audio.audio-url > .featured-excerpt.excerpt-wide,
.front-page-header.text.excerpt-wide .content-text .content-blurb,
.front-page-header .text.audio > .featured-excerpt.excerpt-wide,
.embed-container.embed-alignment-center .featured-excerpt.excerpt-wide {
  max-width: 80%;
}
.latest-episode .main-featured-post.audio.audio-url > .featured-excerpt.excerpt-medium,
.front-page-header.text.excerpt-medium .content-text .content-blurb,
.front-page-header .text.audio > .featured-excerpt.excerpt-medium,
.embed-container.embed-alignment-center .featured-excerpt.excerpt-medium {
  max-width: 65%;
}
.latest-episode .main-featured-post.audio.audio-url > .featured-excerpt.excerpt-narrow,
.front-page-header.text.excerpt-narrow .content-text .content-blurb,
.front-page-header .text.audio > .featured-excerpt.excerpt-narrow,
.embed-container.embed-alignment-center .featured-excerpt.excerpt-narrow {
  max-width: 50%;
}

/* Players & Embeds | Title Width */
.fh-heading-full .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-heading-full .front-page-header .text.audio > h2,
.fh-heading-full .front-page-header.text .content-text h2,
.fh-heading-full .embed-container.embed-alignment-center h2  {
  max-width: 100%;
}
.fh-heading-wide .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-heading-wide .front-page-header .text.audio > h2,
.fh-heading-wide .front-page-header.text .content-text h2,
.fh-heading-wide .embed-container.embed-alignment-center h2 {
  max-width: 80%;
}
.fh-heading-medium .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-heading-medium .front-page-header .text.audio > h2,
.fh-heading-medium .front-page-header.text .content-text h2,
.fh-heading-medium .embed-container.embed-alignment-center h2 {
  max-width: 65%;
}
.fh-heading-narrow .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-heading-narrow .front-page-header .text.audio > h2,
.fh-heading-narrow .front-page-header.text .content-text h2,
.fh-heading-narrow .embed-container.embed-alignment-center h2 {
  max-width: 50%;
}

/* Audio Players Width | Full */
.fh-audio-player-full .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-full .front-page-header .audio-player-container,
.fh-audio-player-full .front-page-header .powerpress_player {
  width: 100%;
}

/* Audio Players Width | Wide */
.fh-audio-player-wide .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-wide .front-page-header .audio-player-container,
.fh-audio-player-wide .front-page-header .powerpress_player {
  width: 80%;
}

/* Audio Players Width | Medium */
.fh-audio-player-medium .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-medium .front-page-header .audio-player-container,
.fh-audio-player-medium .front-page-header .powerpress_player {
  width: 65%;
}

/* Audio Players Width | Narrow */
.fh-audio-player-narrow .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-narrow .front-page-header .audio-player-container,
.fh-audio-player-narrow .front-page-header .powerpress_player {
  width: 50%;
}

/* Audio Players Alignment | Right */
.fh-audio-player-left .latest-episode .main-featured-post.audio.audio-url,
.fh-audio-player-left .front-page-header:not(.static):not(.slideshow) .text.audio {
  width: 100%;
  align-items: flex-start;
}
.fh-audio-player-left .latest-episode .main-featured-post.audio.audio-url > .mini-title,
.fh-audio-player-left .front-page-header:not(.static):not(.slideshow) .text.audio > .mini-title {
  text-align: left;
}
.fh-audio-player-left .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-audio-player-left .front-page-header:not(.static):not(.slideshow) .text.audio > h2 {
  text-align: left;
  justify-content: flex-start;
}
.fh-audio-player-left .latest-episode .main-featured-post.audio.audio-url > .featured-excerpt,
.fh-audio-player-left .front-page-header:not(.static):not(.slideshow) .text.audio > .featured-excerpt {
  text-align: left;
  justify-content: flex-start;
}
.fh-audio-player-left .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-left .front-page-header:not(.static):not(.slideshow) .audio-player-container,
.fh-audio-player-left .front-page-header:not(.static):not(.slideshow) .powerpress_player {
  justify-content: flex-start;
}

/* Audio Players Alignment | Centered */
.fh-audio-player-center .latest-episode .main-featured-post.audio.audio-url,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .text.audio {
  width: 100%;
  align-items: center
}
.fh-audio-player-center .latest-episode .main-featured-post.audio.audio-url > .mini-title,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .text.audio > .mini-title {
  text-align: center;
}
.fh-audio-player-center .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .text.audio > h2 {
  text-align: center;
  justify-content: center;
}
.fh-audio-player-center .latest-episode .main-featured-post.audio.audio-url > .featured-excerpt,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .text.audio > .featured-excerpt {
  text-align: center;
  justify-content: center;
}
.fh-audio-player-center .front-page-header.text .content-text > h2 {
  margin-right: auto;
  margin-left: auto;
}
.fh-audio-player-center .front-page-header.text .content-text .content-blurb {
  margin-right: auto;
  margin-left: auto;
}
.fh-audio-player-center .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .audio-player-container {
  display: flex;
  justify-content: center;
}
.fh-audio-player-center .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .audio-player-container,
.fh-audio-player-center .front-page-header:not(.static):not(.slideshow) .powerpress_player {
  justify-content: center;
}

/* Audio Players Alignment | Right */
.fh-audio-player-right .latest-episode .main-featured-post.audio.audio-url,
.fh-audio-player-right .front-page-header:not(.static):not(.slideshow) .text.audio {
  width: 100%;
  align-items: flex-end;
}
.fh-audio-player-right .latest-episode .main-featured-post.audio.audio-url > .mini-title,
.fh-audio-player-right .front-page-header:not(.static):not(.slideshow) .text.audio > .mini-title {
  width: 100%;
  text-align: right;
}
.fh-audio-player-right .latest-episode .main-featured-post.audio.audio-url > h2,
.fh-audio-player-right .front-page-header:not(.static):not(.slideshow) .text.audio > h2 {
  text-align: right;
  justify-content: flex-end;
}
.fh-audio-player-right .latest-episode .main-featured-post.audio.audio-url > .featured-excerpt,
.fh-audio-player-right .front-page-header:not(.static):not(.slideshow) .text.audio > .featured-excerpt {
  text-align: right;
  justify-content: flex-end;
}
.fh-audio-player-right .front-page-header.text .content-text > h2 {
  margin-right: 0;
  margin-left: auto;
}
.fh-audio-player-right .front-page-header.text .content-text .content-blurb {
  margin-right: 0;
  margin-left: auto;
}
.fh-audio-player-right .latest-episode .main-featured-post.audio.audio-url .audio-player-container,
.fh-audio-player-right .front-page-header:not(.static):not(.slideshow) .audio-player-container,
.fh-audio-player-right .front-page-header:not(.static):not(.slideshow) .powerpress_player {
  justify-content: flex-end;
}


/* New Front Page | List of Posts */
.front-page-indigo .list-of-episodes .row.masonry-container {
  flex-direction: column;
}

/* New Front Page | List of Posts (Article) */
.front-page-indigo .list-of-episodes article {
  background: transparent;
}
.front-page-indigo .list-of-episodes article:first-of-type {
  margin-top: 0;
}
.front-page-indigo .list-of-episodes article .featured-image {
  width: 450px;
}
.front-page-indigo .list-of-episodes.full-post article .featured-image {
  max-width: 450px;
  max-height: 450px;
}
.front-page-indigo .list-of-episodes.full-post article .featured-image a {
  width: 450px
}
.front-page-indigo .list-of-episodes article .featured-image img {
  width: 450px;
  height: 450px;
  display: block;
}
.front-page-indigo .list-of-episodes article .post-content {
  font-size: calc(0.875rem + 0.21vw);
  width: 100%;
  background: #ffffff;
}
.front-page-indigo .list-of-episodes article .post-content .inside {
  padding: 42px;
  padding: calc(1.5rem + 0.94vw);
}
.front-page-indigo .list-of-episodes article.has-post-thumbnail .post-content {
  min-height: auto;
  width: calc( 100% - 450px );
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.front-page-indigo .list-of-episodes article.has-post-thumbnail .inside {
  padding: 42px;
  padding: calc(1.5rem + 0.94vw);
}
.front-page-indigo .list-of-episodes.full-post article .inside {
  width: 100%;
}
.front-page-indigo .list-of-episodes article .inside .powerpress_links.powerpress_links_mp3,
.front-page-indigo .list-of-episodes article .inside .powerpress_links.powerpress_subscribe_links {
  display: none;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .pod-mejs-controls-inner .mejs-time-rail .mejs-time-float .mejs-time-float-current {
  color: #ffffff;
}
.front-page-indigo .list-of-episodes article .more-link {
  display: block;
  margin-top: 10px;
}
.front-page-indigo .list-of-episodes article .featured-image .hover .icon {
  opacity: 1;
  right: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  width: 64px;
}
.front-page-indigo .list-of-episodes article .featured-image .hover{
  display: flex;
  justify-content: center;
  align-items: center;
}
.front-page-indigo .list-of-episodes article .featured-image .hover .new-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.4s;
}
.front-page-indigo .list-of-episodes article .featured-image .hover .new-icon:hover {
  background: rgba(255,255,255,0.25);
  transition-duration: 0.4s;
}
.front-page-indigo .list-of-episodes article .featured-image .hover .new-icon a {
  border: 4px solid #fff;
  color: #ffffff;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.front-page-indigo .list-of-episodes article .featured-image .hover .new-icon a .fa:hover {
  color: #199fdd;
}
.front-page-indigo .list-of-episodes article .featured-image .hover .new-icon a .fa {
  font-size: 18px;
  margin-top: 0;
  margin-left: 3px;
}
.front-page-indigo .list-of-episodes article .audio_player {
  background: transparent;
}
.front-page-indigo .list-of-episodes article .mejs-container.mejs-audio {
  background: transparent;
    height: 42px !important;
    margin-bottom: 16px;
}
.front-page-indigo .list-of-episodes article .powerpress_player .mejs-audio {
  height: 42px !important;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls {
  height: 42px;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-button {
  height: 42px;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-button button {
  height: 42px;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .pod-mejs-controls-inner .mejs-horizontal-volume-slider {
  height: 42px;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-time {
  color: #777777;
  height: 42px;
}
.front-page-indigo .list-of-episodes article .mejs-container  .mejs-controls .pod-mejs-controls-inner .mejs-button button {
  color: #199fdd;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-time-rail .mejs-time-total {
  background: #eee;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #cccccc;
}
.front-page-indigo .list-of-episodes article .mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.front-page-indigo .list-of-episodes article .mejs-container.mejs-audio .mejs-controls .pod-mejs-controls-inner .mejs-time-rail span.mejs-time-current,
.front-page-indigo .list-of-episodes article .mejs-container.mejs-video .mejs-controls:hover .pod-mejs-controls-inner .mejs-time-rail span.mejs-time-current {
  background: #199fdd;
}

/* New Front Page | List of Posts (Infinite Scroll) */
.front-page-indigo .pagi-stamp {
  margin-top: 42px;
  padding-bottom: 24px;
}
.front-page-indigo .pagi-stamp .pagination {
  margin: 0;
}
.front-page-indigo .pagi-stamp .pagination.loader-button {
  width: 100%;
}
.front-page-indigo .pagi-stamp .pagination.loader-button .inner {
  width: 100%;
}
.front-page-indigo .pagi-stamp .pagination.loader-button a:link,
.front-page-indigo .pagi-stamp .pagination.loader-button a:visited {
  opacity: 1;
  font-weight: bold;
  padding: 12px 36px;
  font-size: 16px;
  border-radius: 3px;
  background: #199fdd;
  color: #ffffff;
  display: block;
  text-align: center;
}
.front-page-indigo .pagi-stamp .pagination.loader-button a:hover {
  background: #cccccc;
  color: #555555;
}
.front-page-indigo .page-load-status {
  padding: 0;
  display: none;
  height: 72px;
  text-align: center;
  color: #777;
  position: relative;
}

.front-page-indigo .pagination {
  margin-top: 42px;
}

/* Ajax Loader */
.pod_loadmore {
  margin-top: 42px;
  background-color: #ddd;
  border-radius: 2px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  padding: 10px 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;  
}
.pod_loadmore:hover{
  background-color: #767676;
  color: #fff;
}
.loaded-text {
  margin: 30px 0 20px 0;
  text-align: center;
}
.list-of-episodes .archive-link-button {
  margin-top: 42px;
  margin-top: calc(1.5rem + 0.94vw);
  margin-right: 0;
  margin-left: auto;
}

/* New Front Page | Donate Button */
.call-to-action-container {
  background: #e5e5e5;
  padding-bottom: 96px;
}
.call-to-action-container .call-to-action-text h2 {
  font-size: 32px;
  font-size: calc(1.75em + 0.21vw);
}
.call-to-action-container .call-to-action-content {
  background: #d7d7d7;
  color: #555555;
  padding: 72px 42px;
  padding-top: calc(2rem + 2.08vw);
  padding-bottom: calc(2rem + 2.08vw);
  padding-left: calc(2rem + 0.52vw);
  padding-right: calc(2rem + 0.52vw);
  display: flex;
  justify-content: space-between;
}
.call-to-action-content h2 {
  color: #555555;
}
.call-to-action-container .call-to-action-content .call-to-action-text {
  width: 48%;
}
.call-to-action-container .call-to-action-form-container {
  width: 48%;
  display: flex;
  justify-content: center;
  position: relative;
}
.call-to-action-container .call-to-action-form {
  color: #555555;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.call-to-action-container .call-to-action-form .butn {
  background-color: #199fdd;
  transition-duration: 0.4s;
  display: flex;
  align-items: center;
}
.call-to-action-container .call-to-action-form .butn:hover {
  transition-duration: 0.4s;
}
.call-to-action-container .call-to-action-form .butn span {
  margin-right: 12px;
}
.call-to-action-container .call-to-action-form .butn span.fab {
  font-weight: 400;
}
.call-to-action-container .call-to-action-form .butn span.fab.fa-apple-pay {
  font-size: 1.5rem;
  font-size: calc(0.875rem + 0.83vw);
  position: relative;
  top: 1px;
}
/* New Front Page | Hosts Section */
.hosts-container {
  background: #e5e5e5;
  padding-bottom: 64px;
  padding-bottom: calc(2rem + 1.67vw);
}
.hosts-container .hosts-description {
  width: 60%;
  margin-bottom: 32px;
}
.hosts-container .hosts-description h2 {
  font-size: 32px;
  font-size: calc(1.75em + 0.21vw);
}
.hosts-container .hosts-content {
  display: flex;
  flex-wrap: wrap;
}
.hosts-container .hosts-content .host {
  background: #ffffff;
  width: 31%;  
  color: #444;
  text-align: center;
  margin-bottom: 3.5%;
  margin-right: 3.5%;
}
.hosts-container .hosts-content .host .host-inner {
  padding: 32px;
}
.hosts-container .hosts-content .host:nth-of-type(3n+3) {
  margin-left: 0;
  margin-right: auto;
}
.hosts-container .hosts-content .host h3 {
  font-size: 28px;
  font-size: calc(1.25rem + 0.42vw);
  color: #444;
  margin-top: 10px;
}
.hosts-container .hosts-content .host .host-position {
  color: #aaaaaa;
  font-size: calc(0.875rem + 0.1vw);
}
.hosts-container .hosts-content .host .host-image {
  position: relative;
  margin: 0 auto 54px auto;
}
.hosts-container .hosts-content .host .host-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: auto;
  display: block;
  position: relative;
}
.hosts-container .hosts-content .host .host-image:before {
  width: 100px;
  height: 100px;
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #199fdd;
  z-index: 9;
  opacity: 0;
  transition-duration: 0.4s;
}
.hosts-container .hosts-content .host .host-image:hover::before {
  opacity: 0.7;
  transition-duration: 0.4s;
}
.hosts-container .hosts-content .host a.img-profile {
  opacity: 1;
}
.hosts-container .hosts-content .host .host-content {
  color: #888888;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
  text-align: center;
  margin-top: 16px;
}
.hosts-container .hosts-content .host .host-social {
  margin: 0 auto;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: nowrap;
}
.hosts-container .hosts-content .host .host-social li {
  margin-right:16px;
}
.hosts-container .hosts-content .host .host-social li a {
  color: #888;
}
.hosts-container .hosts-content .host .host-social li:last-of-type {
  margin-right: 0;
}

/* New Front Page | Newsletter Subscribe (Container) */
.newsletter-container {
  padding-top: 80px;
}

.newsletter-container .newsletter-content {
  background: #199fdd;
  color: #ffffff;
  padding: 72px 42px;
  padding-top: calc(2rem + 2.08vw);
  padding-bottom: calc(2rem + 2.08vw);
  padding-left: calc(2rem + 0.52vw);
  padding-right: calc(2rem + 0.52vw);
  display: flex;
  justify-content: space-between;
}
.newsletter-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-size: calc(1.75em + 0.21vw);
}
.newsletter-container .newsletter-content .newsletter-text {
  width: 48%;
}

/* New Front Page | Newsletter Subscribe (Form) */
.newsletter-container .newsletter-form-container {
  width: 48%;
  display: flex;
  justify-content: center;
  position: relative;
}
.newsletter-container .newsletter-form {
  border-bottom: 1px solid #fff;
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p {
  margin: 0;
}
.newsletter-container .newsletter-form input[type="email"],
.newsletter-container .newsletter-form input[type="text"] {
  border-radius: 0;
  border: none;
  font-size: 16px;
  padding: 16px 24px 16px 0;
  width: 100%;
}
.newsletter-container .newsletter-form input[type="submit"] {
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 16px 24px;
  font-size: 16px;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-name,
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-email,
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-submit-button {
  width: 30%;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-name {
  order: 1;
  margin-right: 3%;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-email {
  order: 2;
  margin-right: 3%;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-submit-button {
  order: 5;
}


.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-list-choice,
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-terms {
  width: 100%;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-list-choice span,
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-terms span {
  font-size: 1rem;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-list-choice {
  order: 3;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-list-choice label {
  display: block;
  margin-bottom: 12px;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-terms {
  order: 4;
}
.newsletter-container .newsletter-form .mc4wp-form .mc4wp-form-fields p.nl-terms label {
  margin-bottom: 12px;
}

/* Front Page: Secondary */
.front-page-secondary {
  padding: 72px 0;
  padding: calc(2rem + 2.1vw) 0;
  background-color: #e0e0e0;
}

.front-page-content-above-episodes .front-page-the-content {
  margin-bottom: 42px;
}
.front-page-content-below-episodes .front-page-the-content {
  margin-top: 42px;
}

/* Fromt the Blog */
.fromtheblog h2.title {
  font-size: 28px;
  font-weight:600;
  margin-bottom:30px;
  margin-top: 0;
  color:#555;
}
.fromtheblog article .featured-image {
  width:100%;
}

.front-page-secondary.columns .fromtheblog.rounded-borders article .featured-image img {
  border-radius: 7px;
  overflow: hidden;
}
.fromtheblog.list article .featured-image {
  width:100%;
  display:none;
}
.fromtheblog article .post-header ul {
  margin:10px 0 0 0;
  padding:0;
  list-style: none;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.fromtheblog article .post-header ul li {
  display:inline-block;
  margin-right: 4px;
}
.fromtheblog article .post-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin:0 0 20px 0;
  line-height: 1.4em;
}
.fromtheblog article .post-header h2 a {
  color:#555;
}
.fromtheblog article .post-content {
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
}
.fromtheblog article .post-content iframe {
    max-width: 100%;
    height: auto;
  }
.fromtheblog article .post-footer {
  background: transparent;
  padding: 0;
  text-align: left;
}
.fromtheblog article .post-footer a {
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
  font-weight: bold;
}

/* Fromt the Blog List */
.fromtheblog.list .cont {
  width: 25%;
  padding: 4px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.fromtheblog.list .cont.date {
  width: 15%;
}
.fromtheblog.list .cont_large {
  width: 60%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.fromtheblog.list h2.title {
  font-size: 32px;
  font-size: calc(1.75rem + 0.21vw);
  font-weight: 700;
  margin-bottom: 30px;
  color: #555;
}
.fromtheblog.list article {
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}
.fromtheblog.list article .inside {
  width: 100%;
  display: flex;
}
.fromtheblog.list article:hover {
  background-color: #ccc;
  background-color: rgba(0,0,0,0.1);
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.fromtheblog.list article:first-of-type {
  border: 0;
}
.fromtheblog.list article .featured-image {
  width: 100%;
  display: none;
}
.fromtheblog.list article .post-header {
  display: flex;
  margin: 0;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
}
.fromtheblog.list article .post-header ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.fromtheblog.list article .post-header ul li {
  display: inline-block;
}
.fromtheblog.list article .post-header .user_img_link {
  border: 3px solid #199fdd;
  border-radius: 9999px;
  display: block;
  margin-right: 15px;
  width: 42px;
  width: 48px;
}
.fromtheblog.list article .post-header .user_img_link img {
  border-radius: 9999px;
  border: 3px solid #e0e0e0;
  display: block;
}
.fromtheblog.list article .post-header span {
  width: calc( 100% - 42px );
  display: block;
}
.fromtheblog.list article .post-header span a:link,
.fromtheblog.list article .post-header span a:visited {
  color: #555;
}
.fromtheblog.list article .post-content {
  font-size: 18px;
  line-height: 32px;
  padding: 4px 0 4px 20px;
}
.fromtheblog.list article .post-content .title {
  padding-left: 9px;
}
.fromtheblog.list article .post-content .title a:link,
.fromtheblog.list article .post-content .title a:visited {
  color: #555;
  font-weight: 700;
}
.fromtheblog.list article .post-content .cats a:link,
.fromtheblog.list article .post-content .cats a:visited {
  background-color: #199fdd;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 3px;
  padding: 4px 6px;
  line-height: 15px;
  display: inline-block;
}
.fromtheblog.list article .post-footer {
  text-align: right;
  font-size: 14px;
}
.fromtheblog.list article .post-footer span {
  padding: 0 20px;
  display: inline-block;
}
.fromtheblog.list .button-container {
  margin: 30px 0 0 0;
  text-align: right;
}

/* From the Blog: Horizontal */
.fromtheblog.horizontal article {
  display: flex;
  flex-direction: row;
  margin-bottom: 42px;
}
.fromtheblog.horizontal article:first-of-type .post-header {
  border: none;
}
.fromtheblog.horizontal article:first-of-type .post-content {
  border: none;
}
.fromtheblog.horizontal article .featured-image a {
  width: 100%;
}
.fromtheblog.horizontal article .featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fromtheblog.horizontal article .inside {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.fromtheblog.horizontal article .post-header {
  width: 40%;
  padding-top: 24px;
  border-top: 1px solid #ccc;
}
.fromtheblog.horizontal article .post-header h2 {
  font-size: 1.8rem;
}
.fromtheblog.horizontal article .post-header ul {
  font-size: 0.8rem;
}
.fromtheblog.horizontal article .post-content {
  width: 55%;
  padding-top: 24px;
  border-top: 1px solid #ccc;
}



/* From the Blog: Image Overlay */
.fromtheblog.img-overlay .blog-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 5%;
  grid-row-gap: 5%;
}
.fromtheblog.img-overlay article {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.fromtheblog.img-overlay.rounded-borders article {
  border-radius: 7px;
}
.fromtheblog.img-overlay article .inside {
  width: 100%;
  position: relative;
}
.fromtheblog.img-overlay article .post-featured-image:before {
  content: ' ';
  background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 25%;
  z-index: 10;
  opacity: 0.5;
  transition-duration: 0.5s;
}
.fromtheblog.img-overlay article .post-featured-image img.placeholder {
  width: 100%;
  height: auto;
}
.fromtheblog.img-overlay article:hover .post-featured-image::before {
  top: 0;
  opacity: 1;
  transition-duration: 0.5s;
}
.fromtheblog.img-overlay article .post-header {
  width: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 42px;
  padding: calc(1rem + 1.35vw);
  margin-bottom: 0;
  text-align: center;
  z-index: 20;
  transition-duration: 0.5s;
}
.fromtheblog.img-overlay article:hover .post-header {
  top: 20px;
  transition-duration: 0.5s;
}
.fromtheblog.img-overlay article .post-header h2 {
  font-size: 2rem;
  font-size: calc( 1.2rem + 0.67vw );
  margin-bottom: 16px;
}
.fromtheblog.img-overlay article .post-header h2 a:link, 
.fromtheblog.img-overlay article .post-header h2 a:visited {
  color: #fff;
}
.fromtheblog.img-overlay article .post-header ul {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.fromtheblog.img-overlay article .post-header ul a:link, 
.fromtheblog.img-overlay article .post-header ul a:visited {
  color: #fff;
}
.fromtheblog.img-overlay article .post-header .post-permalink {
  color: #fff;
  border-bottom: 3px solid #fff;
  margin-top: 24px;
  padding-bottom: 4px;
  font-weight: bold;
}
.fromtheblog.img-overlay article .post-content {
  width: 55%;
  padding-top: 24px;
  border-top: 1px solid #ccc;
}


/* Two Columns */
.fromtheblog.img-overlay.cols-2 .blog-posts {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 42px;
  grid-row-gap: 42px;
}
.fromtheblog.img-overlay.cols-2 .button-container {
  margin-top: 64px;
}

/* Three Columns */
.fromtheblog.img-overlay.cols-3 .blog-posts {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}
.fromtheblog.img-overlay.cols-3 .button-container {
  margin-top: 42px;
}
.fromtheblog.img-overlay.cols-3 article .post-header {
  padding: 32px;
  padding: calc(1rem + 0.83vw);
}
.fromtheblog.img-overlay.cols-3 article:hover .post-header {
  top: 20px;
}
.fromtheblog.img-overlay.cols-3 article .post-header ul {
  font-size: 0.7rem;
}
.fromtheblog.img-overlay.cols-3 article .post-header h2 {
  font-size: 1.7rem;
  font-size: calc( 1rem + 0.58vw );
  margin-bottom: 14px;
}
.fromtheblog.img-overlay.cols-3 article .post-header .post-permalink {
  font-size: 0.9rem;
  margin-top: 8px;
  }

/* Four Columns */
.fromtheblog.img-overlay.cols-4 .blog-posts {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 42px;
  grid-row-gap: 42px;
}
.fromtheblog.img-overlay.cols-4 .button-container {
  margin-top: 32px;
}
.fromtheblog.img-overlay.cols-4 article .post-header {
  padding: 24px;
  padding: calc(1rem + 0.42vw);

}
.fromtheblog.img-overlay.cols-4 article:hover .post-header {
  top: 10px;
}
.fromtheblog.img-overlay.cols-4 article .post-header ul {
  font-size: 0.7rem;
}
.fromtheblog.img-overlay.cols-4 article .post-header h2 {
  font-size: 1.4rem;
  font-size: calc( 1.2rem + 0.17vw );
  margin-bottom: 12px;
}
.fromtheblog.img-overlay.cols-4 article .post-header .post-permalink {
  font-size: 0.8rem;
  margin-top: 16px;
  border-width: 2px;
}





/* Front Page (Classic) */
.front-page-classic-template .pagination {
  margin-top: 42px;
}


/* Front Page (Blog w/ Sidebar Right) */
.main-content.blog-front-page {
  background-color: #e5e5e5;
}
.page.page-template .main-content.blog-front-page .post .entry-content {
  padding: 0 32px 32px 32px;
  padding-left: calc(1rem + 0.83vw);
  padding-right: calc(1rem + 0.83vw);
  padding-bottom: calc(1rem + 0.83vw);
}
.page.page-template .main-content.blog-front-page .post.format-quote .entry-content,
.page.page-template .main-content.blog-front-page .post.format-aside .entry-content,
.page.page-template .main-content.blog-front-page .post.format-status .entry-content {
  padding-top: calc(1rem + 0.83vw);
}
.page.page-template .main-content.blog-front-page .post.format-link .entry-content {
  padding: 0;
}
.page.page-template .main-content.blog-front-page .post.format-link .entry-content p:first-of-type {
  margin-left: 0;
  margin-right: 0;
}
.main-content.blog-front-page .post .entry-meta .author-info {
  display: none;
}
.main-content.blog-front-page .post .entry-header .featured-image-large {
  margin-bottom: 42px;
}
.blog-front-page .entries .loading_post #loading_bg {
  display: block;
}
.blog-front-page .entries #loading_bg {
  display: none;
}


/*
 * 6 | Posts
 *-----------------------------------------------------------------*/
/* 6.1 | Main Content
------------------------------------------*/
.main-content {
  padding-top: 72px;
  padding-bottom: 72px;
  padding-top: calc(1rem + 2.08vw);
  padding-bottom: calc(1rem + 2.08vw);
  background-color: #fff;
}
.archive .main-content,
.search .main-content,
.blog .main-content {
  background-color: #e5e5e5;
}

.main-content.nav-sticky.nav-transparent {
  padding-top: 0;
}
.main-content.nav-sticky.nav-transparent.no-header,
.main-content.nav-nav-transparent.no-header,
.main-content.nav-sticky.no-header {
  padding-top: 60px;
}

/* Regular Header */
/* Center content if no sidebars are active. */
.align-content-left .pod-is-sidebar-inactive .col-lg-8 {
  margin-left: 0;
  margin-right: auto;
  float: none;
}
.align-content-centered .pod-is-sidebar-inactive .col-lg-8 {
  margin-left: auto;
  margin-right: auto;
  float: none;
}
.align-content-right .pod-is-sidebar-inactive .col-lg-8 {
  margin-left: auto;
  margin-right: 0;
  float: none;
}

/* Entry */
.entries .post {
  margin-bottom: 64px;
  margin-bottom: calc(1.5rem + 1.98vw);
  position: relative;
  background-color: #fff;
}
.entries-container.not-paginated article:last-of-type {
  margin-bottom: 0;
}
.post img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing:content-box !important;
  -o-box-sizing:content-box !important;
  -moz-box-sizing:content-box !important;
  -webkit-box-sizing:content-box !important;
}

/* Entry Header | Featured Image */
.post .entry-header .featured-image-large {
  position: relative;
  margin-bottom: 42px;
  margin-bottom: calc(1.5rem + 0.938vw);
}
.post .entry-header .featured-image-large img {
  width: 100%;
  height: auto;
  max-width: none;
}
.post .entry-header .featured-image-large a:link,
.post .entry-header .featured-image-large a:visited {
  opacity:1;
}
.post .entry-header .featured-image-large a:hover {
  opacity:1;
}

/* Entry Header | Title Container */
.post .entry-header .title-container {
	padding: 32px;
  padding: calc(1rem + 0.83vw);
}
.post .entry-header .entry-title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 34px;
  font-size: calc(1.25rem + 0.44vw);
  font-weight: 600;
  word-wrap: break-word;
  display: block;
}

/* Entry Header | Date */
.post .entry-header .entry-date {
  margin: 10px 0 0 0;
  font-size: 14px;
  font-size: calc(0.875rem + 0.1vw);
  line-height: 14px;
  padding:0;
  list-style:none;
}
.post .entry-header .entry-date li {
  display:inline-block;
  margin-right: 15px;
}
.post .entry-header .entry-date li a {
  line-height: 28px;
}
.post .entry-header .entry-date .sticky_label {
  color: #fff;
  background: #282c2f;
  font-weight: 700;
  font-size: 14px;
  padding: 3px 6px;
  display:inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

/* Entry Header | Categories */
.post .post-cat-res {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 20px;
  font-size: 12px;
  font-size: calc(0.625rem + 0.1vw);
  font-weight: 600;
  text-transform: uppercase;
}
.post .post-cat-res li {
  margin: 5px 5px 0 0;
  display:inline-block;
  font-weight: bold;
}
.post .post-cat li a:link,
.post  .post-cat li a:visited {
  color: #888;
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 600;
  margin-bottom: 2px;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.post .post-cat li a:hover {
  color: #666;
}

/* Entry Header | Post Title */
.post .entry-header .entry-title a:link,
.post .entry-header .entry-title a:visited {
  color: #555555;
}

/* Entry Header | Post Meta */
.post .entry-header .top-meta {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.post .entry-header .top-meta li {
  display: inline-block;
}

/* Entry Content */
.post .entry-content {
  margin: 0;
  padding: 0 32px 32px 32px;
  padding-left: calc(1rem + 0.83vw);
  padding-right: calc(1rem + 0.83vw);
  padding-bottom: calc(1rem + 0.83vw);
}

/* Entry Content | Summary */
.post .entry-summary {
  margin: 0;
  padding:0 32px 32px 32px;
  padding-left: calc(1rem + 0.83vw);
  padding-right: calc(1rem + 0.83vw);
  padding-bottom: calc(1rem + 0.83vw);
}
.post .entry-summary p:first-of-type {
  margin-top: 0;
}

/* Entry Content | Caption */
.post .entry-content .wp-caption {
  max-width:100%;
  height: auto;
}
.post .entry-content .wp-caption img {
  width:100%;
  height:auto;
}

/* Entry Content | Gallery */
.post .entry-content .gallery.grid .gallery-item {
  width: 33.3333%;
}

/* Entry Content | Definition List */
.post .entry-content dd,
.single .entry-content dd {
  margin-bottom: 16px;
}

/* Entry Content | Table */
.post .entry-content table,
.single .entry-content table {
  border: 1px solid #ddd;
}
.post .entry-content table th,
.single .entry-content table th {
  padding: 10px 15px;
  border: 1px solid #ddd;
}
.post .entry-content table td,
.single .entry-content table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
}

/* Entry Footer | Meta */
.post .entry-meta {
  border-top: 1px solid #ddd;
  padding: 24px 40px;
  padding: calc(1rem + 0.83vw);
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post .entry-meta .footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
}
.post .entry-meta .footer-meta img {
  display: block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.post .entry-meta .footer-meta img.avatar {
  margin-right: 24px;
  margin-right: calc(1rem + 0.42vw);
}
.post .entry-meta .footer-meta span.authorname {
  padding: 10px 0;
}

/* Entry Footer | Taxonomy */
.post .entry-meta .entry-taxonomy {
  order: 2;
}
.post .entry-meta .entry-taxonomy .comment-link {
  padding: 0;
  float: left;
  line-height: 28px;
}

/* Entry Footer | Tags */
.post .entry-meta .entry-tags:before {
  font-family: 'FontAwesome';
  font-size: 16px;
  color: #777;
  display: inline-block;
  content: '\f02b';
  margin-right: 15px;
}
.post .entry-meta .entry-tags {
  margin: 0 0 0 20px;
  padding: 0 0 0 40px;
  list-style: none;
  line-height: 20px;
  display: inline-block;
  background-image: none;
}
.post .entry-meta .entry-tags li {
  display: inline-block;
  margin-right: 15px;
  line-height: 28px;
}

/* Entry Footer | Post Pagination */
.blog .post .pagination {
	padding-left: 32px;
	padding-right: 32px;
  padding-bottom: 32px;
}



/* 6.2 | Post Format Styling
------------------------------------------*/

/* Post Format | Standard Post */
.single .entry-header .featured-image-large.ft-image-stretched img {
  width: 100%;
  height: auto;
  max-width: none;
}
.single .entry-header .featured-image-large.ft-image-auto img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* Post Format | Aside Post */
.post.format-aside .entry-content {
  padding: 42px;
  padding: calc(1rem + 1.35vw);
}
.post.format-aside .entry-content p {
  display: inline;
}
.post.format-aside .entry-content .infinity {
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  line-height: 20px;
}
.single .post.format-aside  .entry-header {
  padding:0;
}

/* Post Format | Quote Post */
.post.format-quote .entry-content {
  padding: 54px 42px;
  padding: calc(1rem + 1.98vw) calc(1rem + 1.35vw);
  margin: 0;
}
.post.format-quote .entry-content blockquote {
  background-color: transparent;
  font-size: 26px;
  font-size: calc(1.125rem + 0.42vw);
  font-weight: 400;
  padding: 0;
  margin: 0 0 16px 0;
}
.post.format-quote .entry-content blockquote p,
.single.single-format-quote .entry-content blockquote p {
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.single.single-format-quote .entry-content blockquote {
  margin: 0;
  font-size: 26px;
  font-size: calc(1.125rem + 0.42vw);
  font-weight: 400;
  padding: 0;
}
.post.format-quote .entry-content blockquote > cite,
.single.single-format-quote .entry-content blockquote > cite {
  margin-left: 0;
}
.post.format-quote .entry-content blockquote p cite,
.single.single-format-quote .entry-content blockquote p cite {
  display: block;
  font-size: 18px;
  font-size: calc(0.875rem + 0.21vw);
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

/* Post Format | Link */
.post.format-link .entry-header .anchor {
  font-size: 42px;
}
.blog .post.format-link .entry-content,
.archive .post.format-link .entry-content {
  padding: 0;
}
.post.format-link .entry-content > p:first-of-type {
  font-size: 28px;
  font-size: calc(1.125rem + 0.67vw);
  background-color: #282c2f;
  padding: 24px;
  padding: calc(1rem + 0.42vw);
  margin: 0;
  line-height: 50px;
  line-height: calc(1.6rem + 1.35vw);
}
.post.format-link .entry-content > p:first-of-type:hover {
  background-color: #17191a;
}
.post.format-link .entry-content > p:first-of-type a:before {
  font-family: FontAwesome;
  content:'\f0c1';
  font-size: 16px;
  font-size: calc(0.75rem + 0.1vw);
  font-weight: 900;
  margin-right: 32px;
  margin-right: calc(1rem + 0.83vw);
}
.post.format-link .entry-content > p:first-of-type a:link,
.post.format-link .entry-content > p:first-of-type a:visited {
  color: #fff;
  padding-left: 24px;
  padding-left: calc(0.75rem + 0.63vw);
  font-weight: 600;
}
.post.format-link .entry-content p {
  margin: 42px;
  margin: calc(1rem + 1.35vw)
}
.single .post.format-link .entry-content > p:first-of-type {
  padding: 24px;
  padding: calc(1rem + 0.42vw);
}
.single .post.format-link .entry-content > p {
  margin: 42px 0;
  margin-top: calc(1.5rem + 0.94vw);
  margin-bottom: calc(1.5rem + 0.94vw);
}

/* Post Format | Status */
.post.format-status .entry-content {
  font-size: 24px;
  font-size: calc(1.125rem + 0.31vw);
  color: #555;
  padding: 42px;
  padding: calc(1rem + 1.35vw);
}

.post.format-status .icon_cont{
  text-align: center;
  display: block;
  margin: 0 0 10px 0;
}
.post.format-status .status_icon {
  color: #bbb;
  font-family: FontAwesome;
  font-size: 24px;
  font-size: calc(1.125rem + 0.31vw);
  font-style: normal;
  font-weight: 900;
  height: 32px;
  line-height: 1;
  width: 32px;

}
.post.format-status .status_icon:before {
  content: "\f0a1";
  border-radius: 3px;
  color: #bbb;
  font-size: 32px;
  font-size: calc(1.5rem + 0.42vw);
  font-style: normal;
  margin-bottom: 5px;
  padding: 10px;
  transition-duration: 0.4s;
}

/* Post Format | Chat */
.post.format-chat .entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post.format-chat .entry-content ul li {
  padding: 24px 0;
  border-bottom: 1px solid #dddddd;
}
.post.format-chat .entry-content ul li:last-of-type {
  border: none;
}
.post.format-chat .entry-content ul li strong {
  display: block;
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
  margin: 0;
  color: #999999;
  font-weight: 600;
  text-transform: uppercase;
}
.post.format-chat .entry-content p {
  border-bottom: 1px solid #dddddd;
  padding: 25px 0;
}
.post.format-chat .entry-content p:last-of-type {
  border:none;
}
.post.format-chat .entry-content p strong {
  display: block;
  font-size: 14px;
  margin: 0;
  color: #999999;
  font-weight: 600;
  text-transform: uppercase;
}

/* Entry | PowerPress Settings*/
.powerpress_player {
  display: block;
  margin:24px 0 0 0;
}
.powerpress_player .mejs-audio {
  width:100% !important;
  height: 70px !important;
}
.single .single-featured .powerpress_player .mejs-audio {
  height:70px !important;
}
.powerpress_links {
  margin:0 0 24px 0;
}


/* 6.3 | Multimedia Post Formats (Audio, Video, Image & Gallery )
------------------------------------------*/
.post .podcast_player,
.post .audio_player,
.post .wp-audio-shortcode {
  display: block;
}
.post.format-audio .featured-media,
.post.format-video .featured-media,
.post.format-image .featured-media,
.post.format-gallery .featured-media {
  margin-bottom: 0;
}
.post.format-audio .featured-media .audio-caption,
.post.format-video .video-caption,
.post.format-image .entry-featured .image-caption,
.post.format-gallery .featured-gallery .gallery-caption {
  padding: 0 32px 32px 32px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #199fdd;
}
.archive .post.format-audio .featured-media .audio-caption,
.archive .post.format-video .video-caption,
.archive .post.format-image .entry-featured .image-caption,
.archive .post.format-gallery .featured-gallery .gallery-caption {
  padding: 0 32px 32px 32px;
}

/* Post Format | Audio */
.post.format-audio .featured-media .audio_player,
.post .featured-media .audio_player {
  margin-bottom: 32px;
}
.post.format-audio .featured-media .audio_player .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.post.format-audio .featured-media .powerpress_player .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background-color: #fff;
}
.featured-media .powerpress_links {
  padding: 0 32px;
}
.post.format-audio .au_oembed iframe,
.single-post.single-format-audio .au_oembed iframe {
  width: 100%;
}
.post.format-audio .au_oembed iframe[src*="soundcloud.com"],
.single-post.single-format-audio .au_oembed iframe[src*="soundcloud.com"] {
  max-height: 166px;
  display: block;
}
.single-post .audio-caption {
  margin-top: 25px;
  color: #ffffff;
}
.post.format-audio .featured-media .powerpress_player .mejs-audio {
  height: 30px !important;
}
.post.format-audio .embed_code iframe[src*="stitcher.com"],
.single-post.single-format-audio .embed_code iframe[src*="stitcher.com"] {
  width: 100% !important;
}
/* Post Format | Video */
.post.format-video .featured-media .video_player {
  margin-bottom: 32px;
}
.video_player > div,
.video_player .powerpress_player > div{
  width: 100% !important;
 }
.post.format-video .post-header {
  margin-bottom: 25px;
}
.post.format-video .featured-media .video_player .powerpress_links {
  display: none;
}

/* Post Format | Gallery */
.flexslider .slides img {
  height: auto;
}
.post.format-gallery .featured-gallery .gallery.flexslider,
.post.format-gallery .entry-header .gallery.flexslider,
.post .entry-content .gallery.flexslider,
.single .gallery.flexslider {
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.post .entry-content .gallery.flexslider {
  margin: 20px 0 !important;
}
.post .loading_post #loading_bg {
  display: block;
}
.post #loading_bg {
  display: none;
}
.single .featured-gallery .gallery.flexslider {
  margin: 0;
}
.post.format-gallery .featured-gallery .gallery.flexslider {
  margin-bottom: 32px;
}
.post.format-gallery .featured-gallery .gallery.flexslider.loading_post,
.single .featured-gallery .gallery.flexslider.loading_post,
.post .entry-content .gallery.flexslider.loading_post {
  height: 300px;
  background-color: #fff;
  background-image: url(img/270.GIF);
  background-repeat: no-repeat;
  background-position: center;
}

.post.format-gallery .featured-gallery .gallery.flexslider .slides,
.single .featured-gallery .gallery.flexslider .slides,
.post .entry-content .gallery.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post.format-gallery .featured-gallery .gallery.flexslider li.gallery-item,
.single .featured-gallery .gallery.flexslider li.gallery-item,
.post .entry-content .gallery.flexslider li.gallery-item {
  position: relative;
  margin-top: 0 !important;
  direction: ltr;
}
.post.format-gallery .featured-gallery .gallery.flexslider li.gallery-item .flex-caption,
.single .featured-gallery .gallery.flexslider li.gallery-item .flex-caption,
.post .entry-content .gallery.flexslider li.gallery-item .flex-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  color: #fff;
  text-align: center;
  background: #FF7F50;
  opacity:0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.post.format-gallery .featured-gallery .gallery.flexslider:hover li.gallery-item .flex-caption,
.single .featured-gallery .gallery.flexslider:hover li.gallery-item .flex-caption,
.post .entry-content .gallery.flexslider:hover li.gallery-item .flex-caption {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.post.format-gallery .featured-gallery .gallery.flexslider li.gallery-item .flex-caption p,
.single .featured-gallery .gallery.flexslider li.gallery-item .flex-caption p,
.post .entry-content .gallery.flexslider li.gallery-item .flex-caption p {
  margin: 0;
  padding: 10px 15px;
}
.post.format-gallery .featured-gallery .gallery.flexslider img,
.single .featured-gallery .gallery.flexslider img,
.post .entry-content .gallery.flexslider img {
  border: 0 !important;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-control-thumbs,
.single .featured-gallery .gallery.flexslider .flex-control-thumbs,
.post .entry-content .gallery.flexslider .flex-control-thumbs {
  margin: 18px 0 0 0;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-control-thumbs li,
.single .featured-gallery .gallery.flexslider .flex-control-thumbs li,
.post .entry-content .gallery.flexslider .flex-control-thumbs li {
  width: 120px;
  padding: 0 22px 22px 0;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-control-thumbs li:last-child,
.single .featured-gallery .gallery.flexslider .flex-control-thumbs li:last-child,
.post .entry-content .gallery.flexslider .flex-control-thumbs li:last-child {
  padding: 0 0 2px 0;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-control-thumbs img,
.single .featured-gallery .gallery.flexslider .flex-control-thumbs img,
.post .entry-content .gallery.flexslider .flex-control-thumbs img {
  opacity: 1;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-direction-nav a,
.single .featured-gallery .gallery.flexslider .flex-direction-nav a,
.post .entry-content .gallery.flexslider .flex-direction-nav a {
  width: 48px;
  height: 80px;
  margin-top: -40px;
  display: block;
  background-image: url(img/flexslider-arrows.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 50%;
  z-index: 100;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 1;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-direction-nav .flex-next,
.single .featured-gallery .gallery.flexslider .flex-direction-nav .flex-next,
.post .entry-content .gallery.flexslider .flex-direction-nav .flex-next {
  background-position: 100% 16px;
  right: 0;
  -moz-transition-duration: 0.5s;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  text-indent: 9999px;
  color: transparent;
  box-shadow: none;
  text-shadow: none;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-direction-nav .flex-prev,
.single .featured-gallery .gallery.flexslider .flex-direction-nav .flex-prev,
.post .entry-content .gallery.flexslider .flex-direction-nav .flex-prev {
  left: 0;
  background-position: 0 16px;
  -moz-transition-duration: 0.5s;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  color: transparent;
  box-shadow: none;
  text-shadow: none;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-direction-nav .flex-next:hover,
.single .featured-gallery .gallery.flexslider .flex-direction-nav .flex-next:hover,
.post .entry-content .gallery.flexslider .flex-direction-nav .flex-next:hover {
  background-color: #206565;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flex-direction-nav .flex-prev:hover,
.single .featured-gallery .gallery.flexslider .flex-direction-nav .flex-prev:hover,
.post .entry-content .gallery.flexslider .flex-direction-nav .flex-prev:hover {
  background-color: #206565;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flexslider:hover .flex-next,
.single .featured-gallery .gallery.flexslider .flexslider:hover .flex-next,
.post .entry-content .gallery.flexslider .flexslider:hover .flex-next {
  opacity: 1;
  right: 10px;
  -moz-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.post.format-gallery .featured-gallery .gallery.flexslider .flexslider:hover .flex-prev,
.single .featured-gallery .gallery.flexslider .flexslider:hover .flex-prev,
.post .entry-content .gallery.flexslider .flexslider:hover .flex-prev {
  opacity: 1;
  right: 65px;
  left: auto;
  -moz-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

/* Post Format | Gallery (Grid) */
.post.format-gallery .entry-content .gallery.grid,
.gallery.grid {
  margin: auto auto 42px auto !important;
  display: flex;
  flex-wrap: wrap;
}
.single.single-format-gallery  .featured-gallery .gallery.grid {
  margin-bottom:0 !important;
}
.post.format-gallery .entry-content .gallery.grid .gallery-item,
.gallery.grid .gallery-item {
  margin: 0 !important;
  position: relative;
}
.single .featured-gallery  .gallery.grid .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.featured-gallery  .gallery.grid.three .gallery-item,
.single .featured-gallery  .gallery.grid.three .gallery-item {
  width: 33.3333%;
}
.featured-gallery  .gallery.grid.four .gallery-item,
.single .featured-gallery  .gallery.grid.four .gallery-item {
  width: 25%;
}
.featured-gallery  .gallery.grid.five .gallery-item,
.single .featured-gallery  .gallery.grid.five .gallery-item {
  width: 20%;
}
.featured-gallery  .gallery.grid.six .gallery-item,
.single .featured-gallery  .gallery.grid.six .gallery-item {
  width: 16.6667%;
}
.featured-gallery  .gallery.grid.seven .gallery-item,
.single .featured-gallery  .gallery.grid.seven .gallery-item {
  width: 14.2857%;
}
.featured-gallery  .gallery.grid.eight .gallery-item,
.single .featured-gallery  .gallery.grid.eight .gallery-item{
  width: 12.5%;
}
.post.format-gallery .entry-content .gallery.grid .gallery-item .flex-caption,
.gallery.grid .gallery-item .flex-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  font-size: 14px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.post.format-gallery .entry-content .gallery.grid .gallery-item:hover .flex-caption,
.gallery.grid .gallery-item:hover .flex-caption {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.post.format-gallery .entry-content .gallery.grid .gallery-item .flex-caption p,
.gallery.grid .gallery-item .flex-caption p {
  padding: 5px 10px;
  margin: 0;
  color: #fff;
}
.post.format-gallery .entry-content .gallery.grid .gallery-item .image_cont,
.gallery.grid .gallery-item .image_cont {
  padding: 0;
}
.post.format-gallery .entry-content .gallery.grid .gallery-item .image_cont img,
.gallery.grid .gallery-item .image_cont img {
  border: 0 !important;
}
.post.format-gallery .entry-meta {
  margin-top: 20px;
}

/* Post Format | Image */
.post.format-image .entry-featured .featured {
  position: relative;
  margin-bottom: 32px;
}
.post.format-image .entry-featured .featured img {
  width: 100%;
  height:auto;
  display:block;
}
.post.format-image .entry-featured .featured .permalink_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.post.format-image .entry-featured .featured .permalink_box:hover {
  opacity: 1;
}
.post.format-image .entry-featured .featured .permalink_box a:link,
.post.format-image .entry-featured .featured .permalink_box a:visited{
  background-color: rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  display: flex;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -18px;
  margin-left: -18px;
  padding: 20px;
  box-sizing:content-box;
  -moz-box-sizing:content-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.post.format-image .entry-featured .featured .permalink_box a:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
.single.single-format-image .single-featured.has-featured-image .translucent {
  background: transparent !important;
}
.single .single-featured .image img {
  max-width: 100%;
  height: auto;
}
.single .single-featured .image .image-caption {
  padding-top: 25px;
  color: #fff;
}

/* Entry | Audio Player */
.post .audio_player {
  background: #199fdd;
}
.post .featured-media .powerpress_player {
  background: #199fdd;
  margin-bottom: 32px;
}
.post .audio_player.embed_code {
  padding:0;
  background: transparent;
}
.post .audio_player.au_oembed {
  background: transparent;
  padding: 0;
}

/* Entry | WP Playlist */
.wp-playlist .mCustomScrollBox {
  background-color: #eeeeee;
}
.wp-playlist.wp-audio-playlist,
.wp-playlist.wp-video-playlist {
  background-color:#bbb;
  font-size:14px;
  margin-bottom:24px;
  padding:0;
  border:0;
}
.wp-playlist.wp-audio-playlist a:link,
.wp-playlist.wp-audio-playlist a:visited,
.wp-playlist.wp-video-playlist a:link,
.wp-playlist.wp-video-playlist a:visited {
  color:#fff;
}
.wp-playlist.wp-audio-playlist .wp-playlist-item,
.wp-playlist.wp-video-playlist .wp-playlist-item {
  text-align: left;
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background-color: #eee;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
}
.wp-playlist.wp-audio-playlist .wp-playlist-item:hover,
.wp-playlist.wp-video-playlist .wp-playlist-item:hover {
  background-color: #ddd;
  cursor: pointer;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
}
.wp-playlist.wp-audio-playlist .wp-playlist-item.wp-playlist-playing,
.wp-playlist.wp-video-playlist .wp-playlist-item.wp-playlist-playing {
  background-color: #ddd
}
.wp-playlist.wp-audio-playlist .wp-playlist-item a:link,
.wp-playlist.wp-audio-playlist .wp-playlist-item a:visited,
.wp-playlist.wp-video-playlist .wp-playlist-item a:link,
.wp-playlist.wp-video-playlist .wp-playlist-item a:visited {
  color:#444;
}
.wp-playlist.wp-audio-playlist .wp-playlist-item:last-of-type,
.wp-playlist.wp-video-playlist .wp-playlist-item:last-of-type {
  border:none;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item,
.wp-playlist.wp-video-playlist .wp-playlist-current-item {
  padding:14px 24px;
  border:none;
  height:auto;
  margin:0;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item img {
  float: left;
  margin-bottom: 14px;
  margin-right: 24px;
  border-radius: 3px;
  height: auto;
  max-width: 100px;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item .wp-playlist-caption,
.wp-playlist.wp-video-playlist .wp-playlist-current-item .wp-playlist-caption {
  color:#fff;
  text-align: left;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item .wp-playlist-caption span,
.wp-playlist.wp-video-playlist .wp-playlist-current-item .wp-playlist-caption span {
  display: block;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item .wp-playlist-caption span.wp-playlist-item-title,
.wp-playlist.wp-video-playlist .wp-playlist-current-item .wp-playlist-caption span.wp-playlist-item-title {
  font-size: 26px;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item .wp-playlist-caption span.wp-playlist-item-album,
.wp-playlist.wp-video-playlist .wp-playlist-current-item .wp-playlist-caption span.wp-playlist-item-album {
  font-size: 20px;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item .wp-playlist-caption span.wp-playlist-item-artist,
.wp-playlist.wp-video-playlist .wp-playlist-current-item .wp-playlist-caption span.wp-playlist-item-artist {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.wp-playlist.wp-audio-playlist .wp-playlist-current-item .wp-playlist-caption:after,
.wp-playlist.wp-video-playlist .wp-playlist-current-item .wp-playlist-caption:after {
  clear:both;
}
.wp-playlist.wp-audio-playlist .wp-playlist-item .wp-playlist-item-length,
.wp-playlist.wp-video-playlist .wp-playlist-item .wp-playlist-item-length {
  float:right;
  color:#777;
  bottom: 0;
  font-size: 14px;
  line-height: inherit;
  padding: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.wp-playlist.wp-audio-playlist .wp-playlist-tracks,
.wp-playlist.wp-video-playlist .wp-playlist-tracks {
  margin:0;
}
.wp-playlist.wp-audio-playlist .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background-color:rgba(0,0,0,0.2);
}
.wp-playlist.wp-audio-playlist .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background-color:rgba(0,0,0,0.25);
}
.wp-playlist.wp-audio-playlist .mejs-controls .mejs-time-rail .mejs-time-total {
  background-color:rgba(0,0,0,0.2);
}
.wp-playlist.wp-audio-playlist .mejs-container,
.post .wp-playlist.wp-audio-playlist .mejs-container,
.single .single-featured .wp-audio-playlist .mejs-audio {
  padding:15px;
  background-color:rgba(0,0,0,0.08);
  width:100% !important;
  height:70px !important;
  clear:both;
}
.post .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls {
  background-color:rgba(0,0,0,0.08);
}
.single-featured.format-audio .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls {
  background-color:rgba(0,0,0,0.08);
  padding-left: 24px;
  padding-right: 24px;
}
/* Entry | Captions */
.featured-caption .vid,
.featured-caption .audio,
.featured-caption .img {
  line-height: 34px;
  padding: 50px 0;
  color: #199fdd;
}

/* Entry | Sticky Posts */
.post.sticky_post {
  margin: 0 0 64px 0;
  margin-bottom: calc(2rem + 1.67vw);
  background: #f0f0f0;
}
.post.sticky_post .entry-header {
  padding: 0;
  margin: 0;
  padding: 30px 0;
}
.post.format-image .entry-header,
.post.sticky_post .featured-audio-title {
  margin: 0;
}
.post.sticky_post .featured-image {
  display: none;
}
.post.sticky_post .featured-post {
  padding: 0;
}
.post.sticky_post .entry-header {
  padding: 0;
}
.post.sticky_post .entry-header .entry-title {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
}
.post.sticky_post .entry-header .entry-date {
  padding: 10px 0 0 0;
  margin: 0;
}
.post.sticky_post .st-readmore,
.post.sticky_post.format-aside .entry-content p {
  display: block;
}
.post.sticky_post .entry-header .permalink-icon.sticky {
  color: #555;
  height: 16px;
  margin: 0;
  text-align: center;
  top: 0;
  width: 16px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 15px;
}
.post.sticky_post .entry-content,
.post.sticky_post .entry-summary {
  padding: 0 30px 30px 30px;
  margin: 0;
}
.post.sticky_post .entry-content p,
.post.sticky_post .entry-summary p {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 28px;
}
.post.sticky_post.format-link .entry-content p:first-of-type {
  background-color: transparent;
  font-size: 16px;
  line-height: 28px;
  padding: 0;
}
.post.sticky_post.format-link .entry-content p:first-of-type:hover {
  background-color: transparent;
}
.post.sticky_post.format-status .entry-content,
.post.sticky_post.format-quote .entry-content,
.post.sticky_post.format-aside .entry-content {
  font-size: inherit;
  padding: 25px;
}
.post.sticky_post .entry-content .excerpt-content {
  margin: 30px 0;
}

/* Entry | Podcast in Blog */
.post.podcast_post {
  margin: 0 0 64px 0;
  background: #282D31;
  color:#fff;
}
.post.podcast_post .entry-header a:link,
.post.podcast_post .entry-header a:visited {
  color:#aaa;
}
.post.podcast_post .entry-header a:hover {
  color:#fff;
}
.post.podcast_post .entry-header .entry-title h2 {
  font-size: 30px;
}


/* Gutenberg
------------------------------------------*/
.post .entry-content p.wp-block-paragraph,
.post .entry-content > p {
  margin: 32px 0;
  margin-top: calc(1rem + 0.83rem);
  margin-bottom: calc(1rem + 0.83rem);
}

/* Block: Images */
.wp-block-image {
  margin-bottom: 2em;
}
.wp-block-image .alignleft {
  margin-right: 2em;
}
.wp-block-image .alignright {
  margin-left: 2em;
}
.wp-block-image img {
  margin-bottom: 0.5em;
}

/* Block: Maps iframe*/
.entry-content iframe[src*="google.com/maps"] {
  width: 100%;
}

/* Block: Figcaptions */
.wp-block-image figcaption,
.wp-block-audio figcaption,
.wp-block-video figcaption {
  font-size: 13px;
  margin-top: .5em;
  margin-bottom: 1em;
}
.wp-block-embed figcaption, 
.wp-block-image figcaption {
  text-align: center;
}

/* Block: Embed */
.wp-block-embed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.wp-block-embed iframe {
  width: 100%;
}


/* Block: Embed (WordPress TV) */
.wp-block-embed.wp-block-embed-wordpress-tv.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.wp-block-embed.wp-block-embed-wordpress-tv.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  padding-top: 56.25%;
}
.wp-block-embed.wp-block-embed-wordpress-tv.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
}
.wp-block-embed.wp-block-embed-wordpress-tv.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.wp-block-embed.alignleft,
.wp-block-embed.alignright {
  max-width: 360px;
  width: 100%;
}
.wp-block-embed.alignleft {
  margin-right: 32px;
}
.wp-block-embed.alignright {
  margin-left: 32px;
}

.wp-block-embed.wp-block-embed-twitter figcaption {
  text-align: left;
}
.wp-block-embed.wp-block-embed-twitter.aligncenter figcaption {
  text-align: center;
}
.wp-block-embed.wp-block-embed-twitter.alignright figcaption {
  text-align: right;
}
.wp-block-embed-twitter.wp-block-embed iframe {
  max-width: 520px;
  overflow: hidden;
}
.template-gutenberg .entry-content .wp-block-embed.wp-block-embed-twitter.alignfull,
.template-gutenberg .entry-content .wp-block-embed.wp-block-embed-spotify.alignfull,
.template-gutenberg .entry-content .wp-block-embed.wp-block-embed-tumblr.alignfull ,
.template-gutenberg .entry-content .wp-block-embed.wp-block-embed-facebook.alignfull,
.template-gutenberg .entry-content .wp-block-embed.wp-block-embed-instagram.alignfull {
  margin-left: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  margin-right: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 48px);
}


/* Block: Table */
.wp-block-table {
  margin-left: 0;
  margin-right: 0;
}
.wp-block-table table,
table.wp-block-table {
  border: 1px solid #dddddd;
  width: 100%;
  border-collapse: collapse; 
  min-width: 240px;
}
.wp-block-table td, 
.wp-block-table th {
  padding: 0.5em;
  border: 1px solid #dddddd;
  border-color: #dddddd;
}
.template-gutenberg .entry-content .wp-block-table.alignfull {
  margin-left: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  margin-right: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 48px);
}

/* Block: Calendar */
.template-gutenberg .entry-content .wp-block-calendar.alignfull {
  margin-left: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  margin-right: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 48px);
}

/* Block: Quote */
.wp-block-quote {
  background: transparent;
  border: none;
  margin: 20px 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.wp-block-quote p {
  margin-bottom: 0;
}
.wp-block-quote cite,
.wp-block-quote.is-large cite, 
.wp-block-quote.is-large footer, 
.wp-block-quote.is-style-large cite, 
.wp-block-quote.is-style-large footer {
  font-size: 1rem;
  line-height: 1.7;
  font-style: normal;
  margin-top: 1rem;
  display: block;
  text-align: unset;
}

/* Block: Quote: Is Large */
.wp-block-quote.is-style-large,
.wp-block-quote.is-large {
  border: 0;
  font-style: normal;
  padding: 0;
}
.wp-block-quote.is-style-large p,
.wp-block-quote.is-large p {
  font-size: 1.75rem;
  font-style: normal;
}

/* Block: Pullquote */
.wp-block-pullquote {
  border: none;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.wp-block-pullquote blockquote {
  background: transparent;
  padding: 0;
  margin: 0;
}
.post .wp-block-pullquote blockquote p,
.wp-block-pullquote blockquote p {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-pullquote.alignleft p, 
.wp-block-pullquote.alignright p {
  font-size: 28px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 32px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer  {
  font-size: 1rem;
  font-style: normal;
  margin-top: 1rem;
  display: block;
}
.wp-block-pullquote.alignwide p {
  font-size: 2rem;
  line-height: 1.3;
}
.wp-block-pullquote.alignfull {
  padding: 3rem 2rem;
}
.wp-block-pullquote.alignfull p {
  font-size: 2.25rem;
  line-height: 1.3;
}

.wp-block-pullquote.alignleft, 
.wp-block-pullquote.alignright {
  width: calc(4 * (100vw / 12));
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.wp-block-pullquote.alignleft {
  text-align: left;
  margin-right: 2rem;
}
.wp-block-pullquote.alignright {
  text-align: left;
  margin-left: 2rem;
}
.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
  font-size: 1.75rem;
  line-height: 1.3;
}

/* Style: Solid Color */
.wp-block-pullquote.is-style-solid-color {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
.wp-block-pullquote.is-style-solid-color blockquote {
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 100%;
  text-align: center;
}
.wp-block-pullquote.is-style-solid-color.alignright,
.wp-block-pullquote.is-style-solid-color.alignleft {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.wp-block-pullquote.is-style-solid-color.alignright blockquote {
  text-align:left;
}
.wp-block-pullquote.is-style-solid-color.alignleft blockquote {
  text-align: left;  
}
.wp-block-pullquote.is-style-solid-color.alignfull {
  padding-left: 0;
  padding-right: 0;
}

/* Block: Button */
.wp-block-button__link,
.wp-block-button a:link,
.wp-block-button a:visited {
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
.wp-block-button__link:active, 
.wp-block-button__link:focus, 
.wp-block-button__link:hover, 
.wp-block-button__link:visited,
.wp-block-button a:active, 
.wp-block-button a:focus, 
.wp-block-button a:hover, 
.wp-block-button a:visited {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.wp-block-button.is-style-default .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
  border-radius: 3px;
}
/* Button Default */
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background):not(.has-text-color),
.wp-block-button:not(.is-style-outline) a:link:not(.has-background):not(.has-text-color),
.wp-block-button:not(.is-style-outline) a:visited:not(.has-background):not(.has-text-color) {
    background: #000000;
    color: #ffffff;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background),
.wp-block-button:not(.is-style-outline) a:link:not(.has-background),
.wp-block-button:not(.is-style-outline) a:visited:not(.has-background) {
    background: #000000;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color),
.wp-block-button:not(.is-style-outline) a:link:not(.has-text-color),
.wp-block-button:not(.is-style-outline) a:visited:not(.has-text-color) {
    color: #ffffff;
}

/* Button Outline */
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color),
.wp-block-button.is-style-outline a:link:not(.has-background):not(.has-text-color),
.wp-block-button.is-style-outline a:visited:not(.has-background):not(.has-text-color) {
    color: #000000;
}



/* Block: Cover Image */
.wp-block-cover, 
.wp-block-cover-image {
  position: relative;
  min-height: 430px;
  margin-bottom: 28px;
}
.wp-block-cover-image h2, 
.wp-block-cover-image .wp-block-cover-image-text, 
.wp-block-cover-image .wp-block-cover-text, 
.wp-block-cover h2, 
.wp-block-cover .wp-block-cover-image-text, 
.wp-block-cover .wp-block-cover-text {
  padding: 0;
  margin-top: 28px;
  margin-bottom: 28px;
  max-width: 100%;
}
.wp-block-cover-image.aligncenter .wp-block-cover-image-text, 
.wp-block-cover-image.aligncenter .wp-block-cover-text, 
.wp-block-cover-image.aligncenter h2, 
.wp-block-cover.aligncenter .wp-block-cover-image-text, 
.wp-block-cover.aligncenter .wp-block-cover-text,
.wp-block-cover.aligncenter h2 {
  max-width: 100%;
}
.wp-block-cover-image.aligncenter.has-left-content .wp-block-cover-image-text, 
.wp-block-cover-image.aligncenter.has-left-content .wp-block-cover-text, 
.wp-block-cover-image.aligncenter.has-left-content h2, 
.wp-block-cover.aligncenter.has-left-content .wp-block-cover-image-text, 
.wp-block-cover.aligncenter.has-left-content .wp-block-cover-text,
.wp-block-cover.aligncenter.has-left-content h2 {
  padding-left: 42px;
}
.wp-block-cover-image.aligncenter.has-right-content .wp-block-cover-image-text, 
.wp-block-cover-image.aligncenter.has-right-content .wp-block-cover-text, 
.wp-block-cover-image.aligncenter.has-right-content h2, 
.wp-block-cover.aligncenter.has-right-content .wp-block-cover-image-text, 
.wp-block-cover.aligncenter.has-right-content .wp-block-cover-text,
.wp-block-cover.aligncenter.has-right-content h2 {
  padding-right: 42px;
}
.wp-block-cover-image.alignwide .wp-block-cover-image-text, 
.wp-block-cover-image.alignwide .wp-block-cover-text, 
.wp-block-cover-image.alignwide h2, 
.wp-block-cover.alignwide .wp-block-cover-image-text, 
.wp-block-cover.alignwide .wp-block-cover-text,
.wp-block-cover.alignwide h2,
.wp-block-cover-image.alignfull .wp-block-cover-image-text, 
.wp-block-cover-image.alignfull .wp-block-cover-text, 
.wp-block-cover-image.alignfull h2, 
.wp-block-cover.alignfull .wp-block-cover-image-text, 
.wp-block-cover.alignfull .wp-block-cover-text,
.wp-block-cover.alignfull h2 {
  max-width: 100%;
}


/* Block: Columns & Column */
.wp-block-column {
  margin-bottom: 0;
}
.wp-block-column p,
.post .wp-block-column p {
  margin-bottom: 28px;
}
.template-gutenberg .wp-block-columns.alignfull .wp-block-column:first-child p, 
.template-gutenberg .post .wp-block-columns.alignfull .wp-block-column:first-child p {
  padding-left: 1rem;
}
.template-gutenberg .wp-block-columns.alignfull .wp-block-column:last-child p, 
.template-gutenberg .post .wp-block-columns.alignfull .wp-block-column:last-child p {
  padding-right: 1rem;
}

/* Block: Seperator */
.wp-block-separator {
  margin-top: 32px;
  margin-bottom: 32px;
  border-color: #eee;
  border-width: 1px;
  border-top: 0;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

/* Font Sizes */
.has-large-font-size,
.has-huge-font-size {
  line-height: 1.2;
}

/* Preformatted */
.wp-block-preformatted,
.wp-block-preformatted pre {
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

/* Verse */
.wp-block-verse pre, 
pre.wp-block-verse,
.single .post .entry-content .wp-block-verse pre, 
.single .post .entry-content pre.wp-block-verse {
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  padding: 1em;
  overflow: auto;
}

/* Latest Post | List */
.wp-block-latest-posts,
.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}

.wp-block-latest-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-latest-posts li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  padding-top: 12px;
}
.wp-block-latest-posts li:last-of-type {
  border-bottom: 0;
}
.wp-block-latest-posts li a {
  font-weight: bold;
}
.template-gutenberg .entry-content .wp-block-latest-posts.alignfull {
  margin-left: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  margin-right: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 48px);
}

/* Categories | List */
.wp-block-categories.wp-block-categories-list {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}
.wp-block-categories.wp-block-categories-list .children {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}

/* Archives | List */
.wp-block-archives.wp-block-archives-list {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}

/* RSS */
.wp-block-rss {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-rss li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  padding-top: 24px;
}
.wp-block-rss li .wp-block-rss__item-title a {
  font-weight: 700;
}

.template-gutenberg .entry-content .wp-block-latest-comments.alignfull .avatar, 
.template-gutenberg .entry-content .wp-block-latest-comments.alignfull .wp-block-latest-comments__comment-avatar {
  width: 40px;
}

/* Tags */
.wp-block-tag-cloud a.tag-cloud-link:link,
.wp-block-tag-cloud a.tag-cloud-link:visited {
  display: inline-block;
  font-size: 14px !important;
  padding: 0 8px;
  margin: 0 5px 6px 0;
  line-height: 25px;
  background-color: #eee;
  color: #444;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.wp-block-tag-cloud.alignleft,
.wp-block-tag-cloud.alignright {
  width: 50%;
}
.template-gutenberg .entry-content .wp-block-tag-cloud.alignfull {
  margin-left: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  margin-right: calc( ( 50% - 50vw ) + calc( 48px / 2 ) ) !important;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 48px);
}


/* File */
.wp-block-file {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.dark-template-active .wp-block-file {
  background-color: #171717;
}
.wp-block-file a:not(.wp-block-file__button) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.9rem;
}
.wp-block-file a:not(.wp-block-file__button):before {
  content: '\f15b';
  display: block;
  margin-right: 8px;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: 400;
  font-size: 1rem;
  color: #555555;
}
.dark-template-active .wp-block-file a:not(.wp-block-file__button)::before {
  color: #cccccc;
}
.wp-block-file .wp-block-file__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 3px;
  margin-left: 0;
  margin-top: 0.5rem;
}
.wp-block-file .wp-block-file__button:after {
  content: '\f0ab';
  font-size: 1rem;
  display: block;
  margin-left: 16px;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
}
.wp-block-file.aligncenter {
  align-items: center;
}
.template-gutenberg .entry-content .wp-block-file.alignfull {
  margin-left: calc( ( 50% - 50vw ) + calc( 48px / 2 )  ) !important;
  margin-right: calc( ( 50% - 50vw ) + calc( 48px / 2 )  ) !important;
  max-width: calc(100vw - 48px);
  width: calc(100vw - 48px);
}
.template-gutenberg .wp-block-columns.alignfull .wp-block-column:first-child .wp-block-file {
  margin-left: 1rem;
}
.template-gutenberg .wp-block-columns.alignfull .wp-block-column:last-child .wp-block-file {
  margin-right: 1rem;
}

/* Alignment | Wide & Full */
.template-gutenberg.main-content.page-padding-top-off {
  padding-top: 0;
}
.template-gutenberg.main-content.page-padding-bottom-off {
  padding-bottom: 0;
}
.template-gutenberg .container {
  width: 764px;
  width: calc( ( 1170px * 0.66666667 ) - 16px );
}
.template-gutenberg .entry-content .alignwide {
  margin-left: -180px;
  margin-right: -180px;
  max-width: unset;
  width: calc( 100% + 360px );
}
.template-gutenberg .entry-content .alignfull {
  margin-left: calc( ( 50% - 50vw ) ) !important;
  margin-right: calc( ( 50% - 50vw ) ) !important;
  max-width: 100vw;
  width: 100vw;
}
.template-gutenberg .entry-content .alignfull img {
  width: 100%;
}
.template-gutenberg .entry-content .wp-block-media-text.alignfull img {
  width: 100%;
  height: auto;
}
.template-gutenberg .entry-content .wp-block-column .wp-block-media-text.alignwide,
.template-gutenberg .entry-content .wp-block-column .wp-block-media-text.alignfull {
  width: 100%;
  max-width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}


/* Gutenberg | Colors */
.has-azure-blue-background-color {
  background-color: #252ee5 !important;
}
.has-slate-grey-background-color {
  background-color: #555555 !important;
}
.has-dolphin-grey-background-color {
  background-color: #aaaaaa !important;
}
.has-sliver-grey-background-color {
  background-color: #dddddd !important;
}
.has-white-background-color {
  background-color: #ffffff !important;
}

.has-azure-blue-color {
  color: #252ee5 !important;
}
.has-slate-grey-color {
  color: #555555 !important;
}
.has-dolphin-grey-color {
  color: #aaaaaa !important;
}
.has-sliver-grey-color {
  color: #dddddd !important;
}
.has-white-color {
  color: #ffffff !important;
}


/*
 * 7 | Pagination
 *-----------------------------------------------------------------*/
.pagination {
  margin: 0;
  display: flex;
}
.single .entry-container .pagination {
  margin-bottom: 32px;
}
.page .entry-container .pagination {
  margin-top: 32px;
}
.pagination .page-numbers:first-child,
.pagination .post-page-numbers:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  margin: 0;
}
.pagination .page-numbers:last-child,
.pagination .post-page-numbers:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.pagination .page-numbers,
.pagination .post-page-numbers {
  background: #282c2f;
  color: #fff;
  padding: 10px 25px;
  text-align: center;
  margin: 0 0 0 1px;
}
.pagination a.page-numbers:link,
.pagination a.page-numbers:visited,
.pagination a.post-page-numbers:link,
.pagination a.post-page-numbers:visited {
  color: #199fdd;
  font-style: normal;
  margin: 0 0 0 1px;
  opacity: 1;
}
.pagination a.page-numbers:hover,
.pagination a.post-page-numbers:hover {
  color: #fff;
  background-color: #17191a;
}



/*
 * 8 | Single Post
 *-----------------------------------------------------------------*/
/* Single | Regular Header */
.single .reg {
  background-color: #93cece;
}
.single .reg .heading {
  position: relative;
  padding: 0;
  height: 200px;
}
.single .reg .heading .title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
}
.single .reg .heading .title h1 {
  margin: 42px 0;
}

/* Single | Featured Header */
.single .single-featured {
  background-color: #eee;
  background-position: center;
  padding:0;
}
.single .single-featured h2 {
  color: #555;
  font-size: 42px;
  font-size: calc(1.5rem + 0.94vw);
  font-weight: 700;
  padding: 0;
  margin: 12px 0 24px 0;
}
.single .single-featured.thumb_bg h2 {
  color: #eee;
}

/* Single | Featured Header (Mini Title) */
.single .single-featured span.mini-title {
  color: #199fdd;
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
  font-weight: bold;
  margin-bottom: 15px;
  padding: 0;
  text-transform: none;
}

/* Single | Featured Header (Next Week) */
.single .single-featured .next-week {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 24px 32px;
  margin-top:32px;
  font-size: 16px
}

/* Single | Featured Header (Background) */
.single .single-featured .background {
  padding: 72px 0 72px 0;
  padding-top: calc(2rem + 2.08vw);
  padding-bottom: calc(2rem + 2.08vw);
}
.single .single-featured.nav-sticky .background {
  padding: 60px 0 72px 0;
  padding-top: calc(1.5rem + 1.88vw);
  padding-bottom: calc(2rem + 2.08vw);
}

/* Single | Featured Header (Post format: Audio) */
.single.format-audio .single-featured,
.single.single-podcast .single-featured {
  padding:0;
}

.single .single-featured.format-audio h2 {
  display: flex;
  align-items: flex-start;
}

/* Single | Featured Header (Post format: Audio - Background) */
.single .single-featured.has-featured-image h2 {
  color:#eee;
}
.single .single-featured.has-featured-image.nav-transparent .background {
  padding: 172px 0 72px 0;
  background: rgba(0,0,0,0.5);
}

/* Single | Featured Header (General Player) */
.single .single-featured .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background-color: rgba(0,0,0,0.2);
}

/* Single | Featured Header (Audio Player) */
.single .single-featured .mejs-audio,
.single .single-featured .mejs-audio .mejs-controls {
  background-color: #eee;
}
.single .single-featured .mejs-audio .mejs-controls {
  padding:0;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-button button {
  color:#888;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-button button:hover {
  color: #199fdd;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-total,
.single .single-featured .mejs-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: rgba(0,0,0,0.2);
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time span {
  color: #888;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time-rail span.mejs-time-handle {
  background: transparent;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time-rail span.mejs-time-handle-content {
  background: #199fdd;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-float {
  background: #555;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-float-corner {
  border-color: #555 transparent transparent;
}
.single .single-featured .mejs-audio .mejs-controls .mejs-time-rail .mejs-time-float .mejs-time-float-current {
  color: #ccc;
}

/* Single | Featured Header (Post format: Audio, has thumbnail) */
.single .single-featured.thumb_bg .mejs-container.mejs-audio .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background-color: rgba(255,255,255,0.5);
}

/* Single | Featured Header (Post format: Audio, has header background) */
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .wp-audio-shortcode.mejs-container,
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .wp-audio-shortcode.mejs-embed,
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .wp-audio-shortcode.mejs-embed body,
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .wp-audio-shortcode .mejs-controls {
  background-color: transparent;
}
.single .single-featured.has-featured-image.audio-featured-image-background .audio_player .mejs-controls .mejs-button button {
  color:#fff;
}
.single .single-featured.has-featured-image.audio-featured-image-background .audio_player .mejs-controls .mejs-time span {
  color: #fff;
}
.single .single-featured.has-featured-image.audio-featured-image-background .audio_player .mejs-controls .pod-mejs-controls-inner .mejs-time-rail .mejs-time-total {
  background: rgba( 255, 255, 255, 0.4);
}
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .mejs-controls.wp-audio-shortcode .mejs-time-rail .mejs-time-loaded,
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .mejs-controls.wp-audio-shortcode .mejs-time-rail .mejs-time-total {
  background-color: rgba(255,255,255,0.4);
}
.single .single-featured.has-featured-image.audio-featured-image-background .mejs-container .mejs-controls .mejs-time span {
  color:#eee;
}
.single .single-featured.has-featured-image.audio-featured-image-background .player_container .mejs-controls.wp-audio-shortcode .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background-color: rgba(255,255,255,0.4);
}

/* Single | Featured Header (Post format: Audio, transparent player inactive) */
.single.single-custom-color-audio-active.single-transparent-audio-inactive .single-featured .audio_player,
.single.single-custom-color-audio-active.single-transparent-audio-inactive .single-featured .powerpress_player {
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 5px;
}

/* Single | Featured Header (Post format: Audio, Embed Players) */
.single.single-format-audio .single-featured .audio_player.au_oembed,
.single.single-format-audio .single-featured .audio_player.embed_code {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

/* Single | Featured Header (Post format: Audio, Playlist) */
.single .single-featured .wp-playlist.wp-audio-playlist .wp-playlist-item,
.single .single-featured .wp-playlist.wp-video-playlist .wp-playlist-item {
  border-bottom:1px solid rgba(0,0,0,0.1);
  background-color:#ddd;
}
.single .single-featured .wp-playlist.wp-audio-playlist .wp-playlist-item.wp-playlist-playing,
.single .single-featured .wp-playlist.wp-video-playlist .wp-playlist-item.wp-playlist-playing {
  background-color: #d0d0d0;
}
.single .single-featured.has-featured-image .wp-playlist .mejs-container .mejs-controls {
  background-color:transparent;
}
.single .single-featured .wp-playlist .mejs-container .mejs-controls .mejs-time span {
  color:#eee;
}

/* Single | Featured Header (Post format: Audio, Album Art) */
.single .single-featured-audio-container {
  display: flex;
  justify-content: space-between;
}
.single .player_container {
  width: 100%;
}
.single .audio-featured-image-thumbnail .player_container.with_thumbnail {
  width: 83%;
  order: 2;
}
.single .audio-featured-image-thumbnail .player_container.with_thumbnail.audio-embed-thumbnail-inactive,
.single .audio-featured-image-thumbnail .player_container.with_thumbnail.audio-playlist-thumbnail-inactive {
  width: 100%;
}
.single .album-art {
  margin-right: 2%;
  width: 15%;
  order: 1;
}
.single .album-art img {
  width: 100%;
  height: auto;
  display: block;
}
.single .single-featured.audio-featured-image-thumbnail.rounded-corners .album-art img {
  border-radius: 7px;
  overflow: hidden;
}
.single .player_container .powerpress_links,
.single .player_container .powerpress_subsribe_links,

.single .video_player .powerpress_links,
.single .video_player .powerpress_subsribe_links {
  display: none;
}

/* Thumb size: Medium */
.single .thumb-size-medium.audio-featured-image-thumbnail .single-featured-audio-container {
  align-items: center;
}
.single .thumb-size-medium .album-art {
  width: 25%;
}
.single .thumb-size-medium.audio-featured-image-thumbnail .player_container.with_thumbnail {
  width: 71%;
}

/* Thumb size: Large */
.single .thumb-size-large.audio-featured-image-thumbnail .single-featured-audio-container {
  align-items: center;
}
.single .thumb-size-large .album-art {
  width: 33%;
}
.single .thumb-size-large.audio-featured-image-thumbnail .player_container.with_thumbnail {
  width: 63%;
}

/* Single | Featured Header (Post format: Video) */
.single .single-featured-video-container .mejs-video .mejs-controls .pod-mejs-controls-inner .mejs-button button {
  color: #fff;
}
.single .single-featured-video-container .mejs-video .mejs-controls .pod-mejs-controls-inner .mejs-time {
  color: #fff;
}
.single .single-featured-video-container .mejs-video .mejs-controls .pod-mejs-controls-inner .mejs-time-rail span.mejs-time-handle-content {
  background-color: #fff;
}
.single .single-featured-video-container .mejs-video .mejs-controls:hover .mejs-time-rail .mejs-time-float {
  background-color: #fff;
}
.single .single-featured-video-container .mejs-video .mejs-controls .pod-mejs-controls-inner .mejs-time-rail .mejs-time-float-corner {
  border-top-color: #fff;
}
.single .single-featured-video-container .mejs-video .mejs-overlay-button::before {
  color: #fff;
}
.single .single-featured-video-container .wp-playlist .mejs-video .mejs-controls .mejs-time span {
  color: #fff;
}
.single .single-featured-video-container .mejs-video .mejs-controls .pod-mejs-controls-inner .mejs-volume-button .mejs-volume-slider .mejs-volume-handle, 
.single .single-featured-video-container .mejs-container.mejs-video.wp-video-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
  background-color: #fff;
}


/* Single | Playlist Custom Scrollbar */
.wp-playlist .mCustomScrollBox > .mCSB_scrollTools {
  width:28px;
}
.wp-playlist .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width:6px;
}

/* Single | Featured Header (Post format: Video) */
.single .single-featured.nav-transparent.has-featured-image .background {
  padding: 172px 0 72px 0;
  background: rgba(0,0,0,0.5);
}

/* Single | Featured Header (Post format: Gallery) */
.single .single-featured.gallery.nav-sticky {
  background-color: #eeeeee;
  padding: 110px 0 0 0;
}

/* Single | Media Caption */
.single .caption-container {
  background-color: #eee;
  padding: 32px 0;
  padding: calc(1rem + 0.83vw) 0;
  border-top: 1px solid #dddddd;
}
.single.single-format-gallery .caption-container {
	background: #ffffff;
	border-top: none;
	border-bottom: 1px solid #eeeeee;

}
.single .caption-container .podcast_meta p {
  margin: 0;
}
.single .caption-container .powerpress_embed_box {
  margin: 0;
}

/* Single | Entry */
.single .post {
  margin-top: 0;
  padding: 0;
  position: relative; /* To make sure author info is displayed properly. */
}

/* Single | Entry Header */
.single .post .entry-header {
  padding: 0;
  margin-bottom: 32px;
  margin-bottom: calc(1rem + 0.83vw);
}
.single .post .entry-header .mini-title {
	font-weight: bold;
	font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
	display: inline-block;
}
.single .post .entry-header .entry-title {
  font-size: 42px;
  font-size: calc(1.5rem + 0.94vw);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

/* Single | Entry Content */
.single .entry-container .entry-content {
  padding: 0;
  margin-bottom: 32px;
  margin-bottom: calc(1rem + 0.83vw);
}
.page .entry-container .entry-content {
  padding:0;
}
.single .content {
  background-color: #fff;
}
.single .entry-container .entry-content:after,
.page .entry-container .entry-content:after {
  clear: both;
  content: ' ';
  display: block;
}
.single .main-content:not(.template-gutenberg) .entry-container .entry-content img,
.page .main-content:not(.template-gutenberg) .entry-container .entry-content img {
  max-width: 100%;
  height: auto;
}
.single .main-content:not(.template-gutenberg) .entry-container .entry-content .wp-caption,
.page .main-content:not(.template-gutenberg) .entry-container .entry-content .wp-caption {
  max-width: 100%;
  height: auto;
}



/* Single | Kitchensink */
.single .post .entry-content h1,
.single .post .entry-content h2,
.single .post .entry-content h3,
.single .post .entry-content h4,
.single .post .entry-content h5,
.single .post .entry-content h6 {
  margin-bottom: 42px;
  margin-bottom: calc(1.5rem + 0.94vw);
}
.single .post .entry-content > ol,
.single .post .entry-content > ul {
  margin-top: 32px;
  margin-bottom: 32px;
}
.single .post .entry-content pre {
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  line-height: 32px;
}
.single .post .entry-content pre.wp-block-verse {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  margin-bottom: 32px;
}
.single .entry-content img.alignnone,
.page .entry-content img.alignnone {
  max-width: 100%;
  height: auto;
}
.single .entry-content .wp-caption.alignnone,
.page .entry-content .wp-caption.alignnone {
  max-width: 100%;
  height: auto; 
}
.single .entry-content .wp-caption.alignnone img,
.page .entry-content .wp-caption.alignnone img {
  max-width: 100%;
  height: auto; 
}

/* Single | Entry Categories */
.single .entry-categories {
  margin: 0 0 32px 0;
  margin-bottom: calc(1rem + 0.83vw);
  padding: 0;
  list-style: none;
}
.single .post .entry-categories li {
  margin-right: 5px;
  display: inline-block;
}

/* Single | Entry Tags */
.single .entry-tags {
  margin: 0 0 32px 0;
  margin-bottom: calc(1rem + 0.83vw);
  padding: 0;
  list-style: none;
  line-height: 20px;
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
}
.single .entry-tags li {
  display: inline-block;
  padding: 5px 10px;
  font-style: normal;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.single .entry-tags li:first-of-type {
	padding-left: 0;
}

/* Single | Entry Meta */
.single .post .entry-meta {
  padding:0;
  margin-top:24px;
  border-color:#ddd;
}

/* Single | Entry Meta (Author Info) */
.author-info {
  clear: both;
}
.single .entry-meta .author-info {
  margin:0;
  padding:0;
  left: -224px;
  position: absolute;
  top: 0;
  text-align: right;
  width: 200px;
  display:none;
}
.single.single-format-audio .entry-meta.host-audio .author-info {
  display:block;
}
.single.single-format-audio .entry-meta.host-audio-video .author-info,
.single.single-format-video .entry-meta.host-audio-video .author-info {
  display:block;
}
.single.single-format-standard .entry-meta.host-all .author-info,
.single.single-format-audio .entry-meta.host-all .author-info,
.single.single-format-video .entry-meta.host-all .author-info,
.single.single-format-gallery .entry-meta.host-all .author-info,
.single.single-format-image .entry-meta.host-all .author-info,
.single.single-format-chat .entry-meta.host-all .author-info,
.single.single-format-link .entry-meta.host-all .author-info,
.single.single-format-quote .entry-meta.host-all .author-info,
.single.single-format-aside .entry-meta.host-all .author-info,
.single.single-format-status .entry-meta.host-all .author-info {
  display: block
}
.single .sbar-left .entry-meta .author-info {
  right: -224px;
  left: auto;
  text-align: left;
}
.single .author-info p {
  font-size: 16px;
  line-height: 28px;
}
.single .author-info .author-avatar {
  margin: 0 0 24px 0;
}
.single .author-info .author-avatar img {
  margin-right: 0;
  margin-left: auto;
  display: block;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  -o-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -otransition-duration: 0.4s;
  transition-duration: 0.4s;
}
.single .sbar-left .author-info .author-avatar img {
  margin-right: auto;
  margin-left: 0;
}
.single .template-gutenberg .post .entry-meta {
  flex-wrap: wrap;
}

/* Author Info (Gutenberg) */
.single .template-gutenberg .entry-meta .author-info {
  display: block;
  position: static;
  width: 100%;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #ddd;
  
}
.single .template-gutenberg .author-info .author-avatar img {
  margin-right: auto;
  margin-left: auto;

}

/* Single | Episode Speakers */
.single .entry-meta .episode-speakers {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 300;
}
.single .entry-meta .episode-speakers h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.single .entry-meta .episode-speakers .speakers {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  list-style: none;
  font-weight: 300;
}

/* Single | Author Description */
.single .author-description h4 {
  color: #555;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.single .author-description h4 span.fn {
  font-size: inherit;
}
.single .author-description span {
  font-size: 16px;
  color: #666;
}
.single .author-description .author_archive_link {
  margin: 0 0 0 24px;
  position: relative;
  top: -4px;
}
.single .author-description .author_archive_link a:link,
.single .author-description .author_archive_link a:visited {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  border-radius: 3px;
  padding: 3px 5px;
}

/* Single | Post to Post Navigation */
.singlep_pagi {
  margin: 32px 0;
  margin-top: calc(1rem + 0.83vw);
  margin-bottom: calc(1rem + 0.83vw);
  padding: 0 32px;
  padding-right: calc(1rem + 0.83vw);
  padding-left: calc(1rem + 0.83vw);
  list-style: none;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
  display: flex;
  flex-direction: row;
}
.single .singlep_pagi {
  padding: 0;
  width: 100%;
}
.singlep_pagi p {
  color: #aaa;
  font-weight: 700;
  font-size: 14px;
  font-size: calc(0.75em + 0.1vw);
}
.singlep_pagi li.left {
  order: 1;
}
.singlep_pagi li.left p {
  margin-left: 29px;
}
.singlep_pagi li.right {
  order: 2;
  text-align: right;
}
.singlep_pagi li.right p {
  margin-right: 29px;
}
.singlep_pagi li {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.post-pagi-link {
  display: flex;
}
.post-pagi-link.prev-link {
  justify-content: flex-end;
}
.post-pagi-link.prev-link a {
  order: 1;
  text-align: right;
}
.post-pagi-link.prev-link .arrow {
  order: 2;
  margin-left: 12px;
}
.post-pagi-link.next-link a {
  order: 2;
}
.post-pagi-link.next-link .arrow {
  order: 1;
  margin-right: 12px;
}

/* Single | Podcast Post */
.single-podcast.podcast-archive .main-content .container .entries .podcast-content .podcast_meta {
  padding: 25px 0;
}
.single-podcast.podcast-archive .main-content .container .entries .podcast-content .podcast_meta a:link,
.single-podcast.podcast-archive .main-content .container .entries .podcast-content .podcast_meta a:visited {
  background-color: #93cece;
  padding: 2px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.single-podcast.podcast-archive .main-content .container .entries .podcast-content p {
  padding: 25px 0;
}
.single-podcast .podcast-content .title {
  padding-top: 50px;
  padding-left: 0;
  margin-bottom: 20px;
  background: #2A3034;
  overflow: hidden;
}

/* Single | Podcast Post (Media Info) */
.single-post #mediainfo,
.single-podcast #mediainfo {
  margin-bottom: 32px;
}
.single-post #mediainfo > .butn.sub-button-two,
.single-podcast #mediainfo > .butn.sub-button-two {
  margin-left: 10px;
}
.single-post #mediainfo .download-heading {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 18px;
  font-size: calc(1rem + 0.1vw);
}
.single-post #mediainfo .download {
  margin:0;
  padding:0;
  list-style: none;
  font-size: 14px;
}
.single-post #mediainfo .download li {
  display: flex;
  align-items: center;
}
.single-post #mediainfo .download li:before {
  font-family: 'FontAwesome';
  font-weight: 900;
  content:' \f358';
  font-size: 16px;
  color: #ccc;
  margin-right: 5px;
}
.single-post #mediainfo .download .download-link {
  display: inline-block;
  word-break: break-all;
}
.single-post #mediainfo .download li .butn {
  display: inline;
  font-size: 12px;
  font-size: calc(0.625rem + 0.1vw);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-left: 10px;
  padding: 3px 8px;
  text-transform: uppercase;
  line-height: 16px;
}
.single-podcast .podcast-content .title.extra-padding {
  padding-top: 150px;
}
.single-podcast .player-content {
  padding-bottom: 50px;
}
.single-podcast .player-content.extra-padding {
  padding-bottom: 125px;
}
.single-podcast .main-content .podcast-content .container.first {
  z-index: 99;
}
.single-podcast .player-content .podcast_player,
.page .podcast_player {
  margin-left: 0;
  margin-top: 10px;
}
.single-podcast .podcast-content .title h1 {
  color: #eee;
  margin: 10px 0 10px;
  padding: 0;
  font-size: 42px;
}
.single-podcast .podcast-content .title ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ddd;
}
.single-podcast .podcast-content .title ul li {
  display: inline-block;
  padding-right: 10px;
}
.single-podcast .podcast-content .title img {
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  height: 100px;
  width: 100px;
  margin-right: 25px;
}

/* Single (Post format) | Standard */
.single .post.format-standard {
  padding-top: 0;
}
.single .post.format-standard .entry-header .entry-title {
  margin-left: 0;
  margin-top: 0;
}
.single .post.format-standard .entry-header {
  padding: 0 0 32px 0;
  padding-bottom: calc(1rem + 0.83vw);
}

/* Single (Post format) | Gallery */
.single .post.format-gallery .entry-content p {
  padding: 0;
}
.single .single-featured.gallery {
  padding: 0;
}



/*
 * 9 | Comment Section
 *-----------------------------------------------------------------*/
.single .comment-respond,
.single #comments {
  padding:0;
}
.single .comment-respond h3,
.single #comments h3 {
  font-size: 32px;
  font-size: calc(1.5rem + 0.42vw);
  color: #555;
}

/* Respond Form */
.comment_container {
  padding-top: 54px;
  padding-top: calc(1.5rem + 1.56vw);
  margin-top: 32px;
  margin-top: calc(1rem + 0.83vw);
}
#respond .comment-inputs {
  display: flex;
  margin-bottom: 32px;
  margin-top: 32px;
  margin-top: calc(1rem + 0.83vw);
  margin-bottom: calc(1rem + 0.83vw);
}
#respond .comment-form-cookies-consent {
  margin: 0 0 10px 0;
}
#respond .comment-inputs > div {
  flex-basis: 33%;
  width: 33%;
}
#respond .comment-inputs > div input {
  width: 100%;
}
#respond #commentform .comment-form-author span {
  padding: 0 15px 0 0;
  display: block;
}
#respond #commentform .comment-form-email span {
  padding: 0 15px 0 0;
  display: block;
}
#respond #commentform .comment-form-comment {
  margin-top: 35px;
  clear: both;
}
#respond #commentform .comment-form-comment textarea {
  margin-top: 10px;
}
#respond #cancel-comment-reply-link:link,
#respond #cancel-comment-reply-link:visited {
  position: relative;
  top: -7px;
  margin-left: 10px;
  padding: 7px 12px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Niramit', 'Arial', sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
#respond #commentform input[text],
#respond #commentform textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
}
#respond .comment-form-cookies-consent input[type="checkbox"] {
	margin-right: 10px;
  margin-left: 0;
}
#respond .comment-form .form-submit {
  margin-bottom: 0;
}

/* Comment List */
#comments {
  margin-top: 64px;
}
#comments #comments-title {
  font-size: 36px;
  font-size: calc(1.2rem + 0.54vw);
  margin-bottom: 50px;
  margin-top: 0;
}
#comments .commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}
#comments .commentlist .children {
  list-style: none;
}
#comments .commentlist .children li {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
#comments .commentlist li {
  margin-bottom: 0;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #dddddd;
}
#comments .commentlist li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#comments .commentlist li .comment-body .comment-awaiting-moderation {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  line-height: 18px;
  margin-bottom: 10px;
}
#comments .commentlist li .comment-body .comment-author img {
  margin-right: 15px;
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
#comments .commentlist li .comment-body .comment-author .fn {
  display: block;
  font-weight: 600;
  font-size: 20px;
  font-size: calc(1rem + 0.21vw);
}
#comments .commentlist li .comment-body .comment-author .date {
  font-size: 12px;
  text-transform: uppercase;
}
#comments .commentlist li .comment-body .reply {
  text-align: right;
}
#comments .commentlist li .comment-body .reply a:link,
#comments .commentlist li .comment-body .reply a:visited {
  padding: 7px 12px;
  font-weight: 600;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
#comments .commentlist #respond {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 42px;
  margin-bottom: 42px;
  width: 100%;
}
.closed-comments {
  padding: 50px 0;
}
#comments .commentlist dd {
  margin-bottom:16px;
}



/*
 * 10 | Blog Page Header
 *-----------------------------------------------------------------*/
.blog .static {
  background-color: #24292C;
}
.blog .heading {
  padding:50px 0;
}
.blog .static .heading .title {
  color:#efefef;
  padding:40px 0;
}
.blog .static .heading .title h1 {
  margin:0;
  font-size: 42px;
  font-size: calc(1.5rem + 0.94vw);
  font-weight: 600;
}
.blog .static .heading .title p {
  margin-top:24px;
  opacity:0.8;
}



/*
 * 11 | Pages
 *-----------------------------------------------------------------*/
.page.page-template .post .entry-content,
.page.page-template-default .post .entry-content {
  background-color:#fff;
  padding:0;
 }
.archive.page .post .entry-content {
  padding:0 32px 32px 32px;
}

/* Page | Banner */
.page .banner-page {
  background: #282C2F;
  height: 250px;
}
.page .entry-meta {
  clear: both;
}

/* Page | Regular Header */
.reg {
  background-color: #24292C;
}
.reg .heading {
  padding: 42px 0;
}
.reg .heading h1,
.reg .heading h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-size: calc(1.5rem + 0.94vw);
  line-height: 54px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}
.reg .heading p {
  color: #919495;
  margin-top: 24px;
}
.reg .heading .title {
  color: #fff;
  padding: 54px 0 54px 0;
  padding-top: calc(1.5rem + 1.56vw);
  padding-bottom: calc(1.5rem + 1.56vw);
}
.reg.has-featured-image .heading h1,
.reg.has-featured-image .heading h2 {
  color: #fff;
}
.reg.has-featured-image .heading p {
  color: #fff;
}

/* Page | Regular Header (w/ featured header) */
.reg.nav-transparent.has-featured-image .heading .title {
  padding:142px 0 40px 0;
}

/* Page | Loading Spinner */
.reg .circle-spinner {
  border-color: #ffffff;
}
.reg .circle-spinner .line::before {
  background: #ffffff;
}

/* Blog | Regular Header */
.reg .content_page_thumb .heading {
  position: relative;
  background-position: center;
}
.reg .content_page_thumb .heading .title {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #ffffff;
}
.reg .content_page_thumb .heading .title p {
  color: #ffffff;
}

/* Archive Header */
.page-template-pagepage-archive-php .archive_cols ul {
  margin:0;
  padding:0;
  list-style: none;
}
.page-template-pagepage-archive-php .archive_cols h2 {
  font-size: 24px;
  font-size: calc(1rem + 0.42vw);
  margin-top:70px;
  margin-bottom:10px;
  font-weight: 600;
}



/* 
 * 404 Page
 *-----------------------------------------------------------------*/
.error404 .entry-container .entry-content,
.error404 .post_body {
  padding-bottom:100px;
}
.error404 .entry-container .entry-content h2 {
  font-size: 124px;
  margin-bottom: 0;
}


/*
 * Archive Page Template
 *-----------------------------------------------------------------*/
.arch_searchform {
  border: 1px solid #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 20px;
}
.arch_searchform #ind_searchform {
  display: flex;
  align-items: center;
}
.arch_searchform #ind_searchform div.first {
  width: 90%;
  float: left;
}
.arch_searchform #ind_searchform div.second {
  width: 10%;
  float:right;
}
.arch_searchform #ind_searchform div .screen-reader-text {
  display: none;
}
.arch_searchform #ind_searchform div #ind_s {
  border: none;
  display: block;
  width: 100%;
  padding: 10px;
}
.arch_searchform #ind_searchform div #ind_searchsubmit {
  display: block;
  background: transparent;
  color: #777 !important;
  width: 100%;
  padding: 18px 0;
  border: 0;
}



/*
 * | Archive
 *-----------------------------------------------------------------*/
/* Author Post Archive */
.archive .author_profile img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  float: left;
  margin-right: 25px;
  
}
.archive .author_profile .author_info {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.archive .author_profile .author_info .info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive .author_profile .author_info .info .author_name {
  margin-top: 0;
}
.archive .author_profile .social {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'FontAwesome';
  display: flex;
}
.archive .author_profile .social li {
  margin: 0 20px 10px 0;
  padding: 0;
}
.archive .author_profile .social li .sicon {
  padding: 0;
  display: block;
  width: 24px;
  height: 24px;
  opacity: 1;
  text-align: center;
}
.archive .author_profile .social li .sicon:before {
  font-family: 'FontAwesomeBrands';
  font-size: 16px;
  line-height: 16px;
  color: #eee;
  padding: 10px;
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.archive .author_profile .social li .sicon:hover:before {
  font-size: 28px;
  line-height: 28px;
  height: 42px;
  width: 42px;
  margin: -6px;
  background: #fff;
  padding: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.archive .author_profile .social li .email:before {
  font-family: 'FontAwesome';
  content: "\f0e0";
}
.archive .author_profile .social li .email:hover:before {
  color: #555;
}
.archive .author_profile .social li .website:before {
  content: "\f109";
}
.archive .author_profile .social li .website:hover:before {
  color: #555;
}
.archive .author_profile .social li .skype:before {
  content: "\f17e";
}
.archive .author_profile .social li .skype:hover:before {
  color: #00aff0;
}
.archive .author_profile .social li .twitter:before {
  content: "\f099";
}
.archive .author_profile .social li .twitter:hover:before {
  color: #00aced;
}
.archive .author_profile .social li .facebook:before {
  content: "\f09a";
}
.archive .author_profile .social li .facebook_2:before {
  content: "\f082";
}
.archive .author_profile .social li .facebook:hover:before,
.archive .author_profile .social li .facebook_2:hover:before {
  color: #3b5998;
}
.archive .author_profile .social li .googleplus:before {
  content: "\f0d5";
}
.archive .author_profile .social li .googleplus:hover:before {
  color: #dd4b39;
}
.archive .author_profile .social li .youtube:before {
  content: "\f167";
}
.archive .author_profile .social li .youtube:hover:before {
  color: #bb0000;
}
.archive .author_profile .social li .vimeo:before {
  content: "\f27d";
}
.archive .author_profile .social li .vimeo:hover:before {
  color: #1ab7ea;
}
.archive .author_profile .social li .youtube_2:before {
  content: "\f16a";
}
.archive .author_profile .social li .dribbble:before {
  content: "\f17d";
}
.archive .author_profile .social li .dribbble:hover:before {
  color: #ea4c89;
}
.archive .author_profile .social li .flickr:before {
  content: "\f16e";
}
.archive .author_profile .social li .flickr:hover:before {
  color: #ff0084;
}
.archive .author_profile .social li .instagram:before {
  content: "\f16d";
}
.archive .author_profile .social li .instagram:hover:before {
  color: #517fa4;
}
.archive .author_profile .social li .soundcloud:before {
  content: "\f1be";
}
.archive .author_profile .social li .soundcloud:hover:before {
  color: #ff8800;
}
.archive .author_profile .social li .snapchat:before {
  content: "\f2ad";
}
.archive .author_profile .social li .snapchat:hover:before {
  color: #fffc00;
}
.archive .author_profile .social li .twitch:before {
  content: "\f1e8";
}
.archive .author_profile .social li .twitch:hover:before {
  color: #6441a5;
}
.archive .author_profile .social li .mixcloud:before {
  content: "\f289";
}
.archive .author_profile .social li .mixcloud:hover:before {
  color: #589fC3;
}
.archive .author_profile .social li .spotify:before {
  content: "\f1bc";
}
.archive .author_profile .social li .spotify:hover:before {
  color: #2ebd59;
}
.archive .author_profile .social li .itunes:before {
  content: "\f179";
}
.archive .author_profile .social li .itunes:hover:before {
  color: #000;
}
.archive .author_profile .social li .rss:before {
  font-family: 'FontAwesome';
  content: "\f143";
  font-weight: 900;
}
.archive .author_profile .social li .rss:hover:before {
  color: #f26522;
}
.archive .author_profile .social li .tumblr:before {
  content: "\f173";
}
.archive .author_profile .social li .tumblr:hover:before {
  color: #32506d;
}
.archive .author_profile .social li .tumblr_2:before {
  content: "\f174";
}
.archive .author_profile .social li .pinterest:before {
  content: "\f0d2";
}
.archive .author_profile .social li .pinterest:hover:before {
  color: #cb2027;
}
.archive .author_profile .social li .xing:before {
  content: "\f169";
}
.archive .author_profile .social li .xing:hover:before {
  color: #126567;
}
.archive .author_profile .social li .linkedin:before {
  content: "\f0e1";
}
.archive .author_profile .social li .linkedin:hover:before {
  color: #007bb6;
}
.archive .author_profile .social li .github:before {
  content: "\f092";
}
.archive .author_profile .social li .github:hover:before {
  color: #171515;
}
.archive .author_profile .social li .stackexchange:before {
  content: "\f16c";
}
.archive .author_profile .social li .stackexchange:hover:before {
  color: #ef8236;
}



/*
 * 11 | Podcast Archive
 *-----------------------------------------------------------------*/
/* Podcast Archive | Header */
.pod-2-podcast-archive-header .heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pod-2-podcast-archive-header .archive-art {
  width: 400px;
}
.pod-2-podcast-archive-header .archive-art img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page .reg.pod-2-podcast-archive-header .title {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: calc(1.5rem + 1.88vw);
  padding-bottom: calc(1.5rem + 1.88vw);
}
.page .reg.pod-2-podcast-archive-header.has-featured-thumbnail-image .title {
  width: calc(100% - 400px);
  padding-left: 32px;
}
.pod-2-podcast-archive-header .subscribe-buttons {
  margin-top: 16px;
}
.pod-2-podcast-archive-header .subscribe-buttons .butn {
  margin-right: 10px;
  margin-top: 12px;
  line-height: 32px;
}

/* Podcast Archive | Header w/ Transparent Navigation */
.page:not(.pod-is-podcast-archive) .reg.pod-2-podcast-archive-header.nav-transparent.has-featured-thumbnail-image .heading {
    padding: 150px 0 40px 0;
}

/* Podcast Archive | List & Grid */
.pod-2-podcast-archive-list .archive-the-content,
.pod-2-podcast-archive-grid .archive-the-content {
  margin-bottom:42px;
}
.pod-2-podcast-archive-list .archive-the-content img,
.pod-2-podcast-archive-grid .archive-the-content img {
  max-width: 100%;
}

/* Podcast Archive | List */
.pod-2-podcast-archive-list .podpost {
  margin-bottom: 64px;
  margin-bottom: calc(2rem + 1.67vw);
  border: 0 !important;
  background: none !important;
}
.pod-2-podcast-archive-list .podpost .post-content {
  display: flex;
  align-items: center;
}
.pod-2-podcast-archive-list .podpost .left {
  width: 400px;
}
.pod-2-podcast-archive-list .podpost .right {
  width: 100%;
}
.pod-2-podcast-archive-list .podpost.has-post-thumbnail .right {
  width: calc( 100% - 400px );
}
.pod-2-podcast-archive-list .podpost .left.post-header .cover-art {
  padding-right: 32px;
}
.pod-2-podcast-archive-list .podpost .left.post-header .cover-art a {
  opacity: 1;
}
.pod-2-podcast-archive-list .podpost .left.post-header .cover-art img {
  max-width: 100%;
  height: auto;
}
.pod-2-podcast-archive-list .podpost .right .post-excerpt .title {
  margin-top: 5px;
  margin-bottom: 24px;
  margin-bottom: calc(1rem + 0.42vw);
  font-size: 32px;
  font-size: calc(1.5rem + 0.42vw);
  font-weight: bold;
}
.pod-2-podcast-archive-list .podpost .right .post-excerpt .title a {
  color: #555;
}
.pod-2-podcast-archive-list .podpost .right .post-excerpt .categories {
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
}
.pod-2-podcast-archive-list .podpost .right .post-excerpt .categories a {
  color: #888;
}
.pod-2-podcast-archive-list .podpost .right .post-excerpt .powerpress_links {
  margin: 0;
  font-size: 14px;
  display: none;
}
.pod-2-podcast-archive-list .podpost .right .post-excerpt .excerpt-player {
  margin-bottom: 24px;
  margin-bottom: calc(1rem + 0.42vw);
  margin-top: 10px;
}

/* Podcast Archive | Grid */
.pod-2-podcast-archive-grid .entries-container {
}
.pod-2-podcast-archive-grid .entries-container .entries-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row; 
}
.pod-2-podcast-archive-grid .podpost {
  margin-bottom: 32px;
  margin-right: 42px;
  width: calc( 25% - 42px * 3 / 4 );
}
.pod-2-podcast-archive-grid .grid-sizer {
  width: calc( 25% - 42px * 3 / 4 );
}
.pod-2-podcast-archive-grid .gutter-sizer {
  width: 42px;
}
.pod-2-podcast-archive-grid .podpost:nth-child(4n) {
  margin-right: 0;
}
.pod-2-podcast-archive-grid .podpost .post-header img {
  max-width: 100%;
  height: auto;
  display: block;
}
.pod-2-podcast-archive-grid .podpost .cover-art {
  background: #000;
  position: relative;
}
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.pod-2-podcast-archive-grid .podpost .cover-art img {
  transition-duration: 0.7s;
}
.pod-2-podcast-archive-grid .podpost .cover-art:hover img {
  opacity: 0.7;
  transition-duration: 0.7s;
}
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content .pp-permalink-icon {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  opacity:0;
  transition-duration: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content .pp-permalink-icon .fa,
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content .pp-permalink-icon .fas {
  color: #fff;
}
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content .pp-permalink-icon .fa:before,
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content .pp-permalink-icon .fas:before {
  font-size: 24px;
}
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content .pp-permalink-icon .fa-microphone-alt:before {
  font-size: 28px
}
.pod-2-podcast-archive-grid .podpost .cover-art .hover-content:hover .pp-permalink-icon {
  opacity:1;
  transition-duration: 0.4s;
}
.pod-2-podcast-archive-grid .podpost .post-footer {
  text-align: center;
  padding-top: 16px;
  line-height: 18px;
}
.pod-2-podcast-archive-grid .podpost .post-footer ul {
  padding:0;
  margin:0;
  list-style:none;
}
.pod-2-podcast-archive-grid .podpost .post-footer .categories {
  font-size: 14px;
}
.pod-2-podcast-archive-grid .podpost .post-footer .title {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
  line-height: 1.4;
}
.pod-2-podcast-archive-grid .podpost .post-footer .title a {
  font-weight: bold;
  color:#555;
}
.pod-2-podcast-archive-grid .podpost .post-footer .categories a {
  color:#999;
  font-size: 14px;
  font-size: calc(0.75rem + 0.1vw);
}

/* Podcaster Archives | Grid (Legacy) */
.template-podcast-archive-legacy .entries-container.grid .podpost {
  margin-bottom: 32px;
  width: calc( ( 100% / 6 ) - 32px * 5 / 6 );
}
.template-podcast-archive-legacy .entries-container.grid .grid-sizer {
  width: calc( (100% / 6 ) - 32px * 5 / 6 );
}
.template-podcast-archive-legacy .entries-container.grid .gutter-sizer {
  width: 32px;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .post-header {
  position: relative;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .post-header img {
  width:100%;
  height:auto;
  border-radius: 5px;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .post-header .hover-content {
  position:absolute;
  top: 50%;
  left: 50%;
  height: 48px;
  width: 48px;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  background-color: #ffffff;
  border-radius: 30px;
  opacity: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.template-podcast-archive-legacy .entries-container.grid .podpost:hover .post-header .hover-content {
  opacity:1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .post-header .hover-content .pp-permalink-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .post-header .hover-content .pp-permalink-icon .fa-microphone-alt:before {
  font-size: 16px;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-content p {
  display:none;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer {

}
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer ul {
  margin:0;
  padding:0;
  list-style:none;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer .podpost-meta {
  margin-top: 10px;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer .podpost-meta .title,
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer .podpost-meta .title a {
  font-size: 14px;
  font-size: calc( 0.75rem + 0.1vw);
  font-weight:bold;
  line-height: 1.4;
}
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer .podpost-meta .categories a,
.template-podcast-archive-legacy .entries-container.grid .podpost .entry-footer .podpost-meta span {
  font-size: 13px;
  font-size: calc( 0.688rem + 0.1vw);
  opacity: 0.7;
  font-weight: 400;
}
.template-podcast-archive .pagination {
  width: 100%;
  margin-bottom: 0;
}

/* Podcaster Archives | List (Legacy) */
.template-podcast-archive-legacy .entries-container.list .podpost {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}
.template-podcast-archive-legacy .entries-container.list > article:last-of-type {
  border: none;
  padding-bottom: 0;

}
.template-podcast-archive-legacy .entries-container.list .podpost .post-header {
  position: relative;
  width: 5%;
}
.template-podcast-archive-legacy .entries-container.list .podpost .post-header img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.template-podcast-archive-legacy .entries-container.list .podpost .post-header .hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  height: 48px;
  width: 48px;
  padding: 12px;
  text-align: center;
  background-color: #fff;
  border-radius: 30px;
  opacity: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.template-podcast-archive-legacy .entries-container.list .podpost:hover .post-header .hover-content {
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.template-podcast-archive-legacy .entries-container.list .podpost .post-header .hover-content .pp-permalink-icon {
  padding: 16px;
  margin-left: -12px;
  position: absolute;
  top: 2px;
  left: 12px;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-content {
  display: flex;
  align-items: center;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-content p {
  display: none;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer {
  width: 95%;
  margin-left: 20px;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta {
  margin-top: 0;
  display: flex;
  align-items: center;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta li {
  float:left;
  padding: 12px 0;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .title {
  width: 60%;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .title a {
  font-size: 16px;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .categories {
  width: 20%;
  margin-left: 20px;
  line-height: 16px;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .categories a,
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .categories span {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 400;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .listen {
  width: 15%;
  text-align: right;
}
.template-podcast-archive-legacy .entries-container.list .podpost .entry-footer .podpost-meta .listen .butn {
  line-height: 1;
  padding: 10px 24px;
  text-align: center;
}


/*
 * 12 | Seriously Simple Podcasting
 *-----------------------------------------------------------------*/
.podcast_subscribe {
  margin-top: 10px;
}
.featured-image-large img {
  width:100%;
  height:auto;
  max-width: none;
}



/*
 * 13 | Sidebar & Widgets
 *-----------------------------------------------------------------*/
/* 12.1 | Sidebar */
.sidebar .placeholder,
footer .placeholder {
  list-style: none;
  border: none;
  margin: 0;
  padding: 0;
}
.sidebar h2,
footer h2 {
  margin: 0 0 16px 0;
  margin-bottom: calc(0.875rem + 0.1vw);
  font-size: 32px;
  font-size: calc(1.5rem + 0.42vw);
}
.sidebar h3 ,
.archive .sidebar h3 {
  color: #555;
  margin: 0 0 24px;
  margin-bottom: calc(1rem + 0.42vw);
  padding: 0;
  font-size: 24px;
  font-size: calc(1rem + 0.42vw);
}
footer h3 {
  margin: 0 0 15px 0;
  font-size: 26px;
}
.sidebar .widget {
  padding: 24px;
  margin: 0 0 54px 0;
  margin-bottom: calc(1.5rem + 1.56vw);
  list-style: none;
}
.sidebar .widget:not(.widget_search):not(.thst_recent_blog_widget) {
  background:#fff;
}
.sidebar .widget ul {
  border: none;
  list-style: none;
  font-size: 16px;
  font-size: calc(0.875rem + 0.1vw);
  padding: 0;
}
.sidebar .widget > ul,
.sidebar .widget div > ul {
  margin: 0;
  padding: 0;
}
.sidebar .widget ul li {
  padding: 6px 0 0 0;
}
.sidebar .widget ul li > a {
  padding: 16px 0;
}
.page:not(.has-front-page-template) .sidebar .widget:not(.widget_search):not(.thst_highlight_category_widget):not(.thst_recent_blog_widget),
.single .sidebar .widget:not(.widget_search):not(.thst_highlight_category_widget):not(.thst_recent_blog_widget),
.single .sidebar .widget,
.page:not(.has-front-page-template) .page .sidebar .widget,
.single .widget.widget_text .textwidget,
.page:not(.has-front-page-template) .page .widget.widget_text .textwidget,
.single .widget.widget_calendar h3,
.page:not(.has-front-page-template) .widget.widget_calendar h3 {
  padding-left: 0;
  padding-right: 0;
}
.sidebar .widget select {
  display: block;
  margin-top: 12px;
}
body.single .sidebar .widget,
body.page:not(.has-front-page-template) .sidebar .widget {
  padding-top: 0;
  padding-bottom: 0;
}
body.page.home .sidebar .widget:not(.thst_highlight_category_widget) {
  padding-top: 24px;
  padding-bottom: 24px;
}
body.page.home .sidebar .widget.widget_calendar h3 {
	padding: 0 24px 0 24px;
}


/* 12.2 | Widgets */
/* Calendar */
.widget.widget_calendar {
  padding:0;
}
.widget.widget_calendar h3 {
  padding:24px 24px 0 24px;
}
.widget #calendar_wrap {
  padding: 0;
  margin: 25px 0;
  width: 100%;
}
.widget #calendar_wrap #wp-calendar {
  padding: 25px;
  border-collapse: collapse;
  width: 100%;
}
.widget #calendar_wrap #wp-calendar thead tr {
  background:#f1f1f1;
}
.widget #calendar_wrap #wp-calendar tfoot {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  -o-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.widget #calendar_wrap #wp-calendar tfoot td#prev {
  border-radius: 0 0 0 3px;
}
.widget #calendar_wrap #wp-calendar tfoot td#next {
  border-radius: 0 0 3px 0;
}
.widget #calendar_wrap #wp-calendar caption {
  padding: 24px;
  padding: calc(1rem + 0.42vw);
}
.widget #calendar_wrap #wp-calendar th {
  padding: 10px;
  font-size: 0.75em;
  text-align:center;
}
.widget #calendar_wrap #wp-calendar tbody {
  padding:0 24px;
}
.widget #calendar_wrap #wp-calendar tbody td {
  padding: 7px;
  font-size: 14px;
  text-align: center;
  border-collapse: collapse;
}
.widget #calendar_wrap #wp-calendar tr td#next {
  text-align: right;
  padding:24px 0 0 0;
}
.widget #calendar_wrap #wp-calendar tr td#next a {
  padding:24px;
  display: block;
}
.widget #calendar_wrap #wp-calendar tr td#next a:hover {
  background-color:#eee;
}
.widget #calendar_wrap #wp-calendar tr td#prev {
  text-align: left;
  padding:24px 0 0 0;
}
.widget #calendar_wrap #wp-calendar tr td#prev a {
  padding:24px;
  display: block;
}
.widget #calendar_wrap #wp-calendar tr td#prev a:hover {
  background-color:#eee;
}
.widget .tagcloud a:link,
.widget .tagcloud a:visited {
  display: inline-block;
  font-size: 14px !important;
  padding: 0 8px;
  margin: 0 5px 6px 0;
  line-height: 25px;
  background-color: #eee;
  color: #444;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

/* Sidebar | Navigation */
.widget.widget_nav_menu ul .sub-menu ul ul ul ul ul ul {
  margin:0;
  padding:0;
}

/* Sidebar | Search Widget */
.widget.widget_search {
  background:transparent;
  padding:0;
}
.widget.widget_search .search-container #s {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  font-size: 16px;
  padding: 0 10px;
  float: left;
  width: 80%;
  height: 50px;
  border: none;
  background-color:#d0d0d0;
  opacity:1;
}
.widget.widget_search .search-container #searchsubmit {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  font-weight: 900;
  color: #199fdd;
  padding: 0;
  border: 0;
  opacity: 1;
  height: 50px;
  width: 20%;
  font-size: 16px;
  display: inline-block;
  background-color: #282D31;
}
.widget.widget_search .search-container #searchsubmit:before {
  font-family: 'FontAwesome';
  content: '\f002';
  font-weight: 900;
}
.widget.widget_search #searchform .search-container {
  display: flex;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 0;
}
.widget.widget_search #searchform .search-container:hover {
  border: 0
}
.widget.widget_search #searchform .search-container:hover #searchsubmit {
  color: #199fdd;
  cursor: pointer;
}
.widget.widget_search h3 {
  padding:0;
}
.search-container input[type="submit"] {
  font-family: 'FontAwesome';
  font-weight: 900;
}
.search-container label {
  display: none;
}

/* Sidebar | Image*/
.sidebar .widget.widget_media_image img {
  max-width: 100%;
  height: auto;
}

/* Sidebar | Gallery */
.widget.widget_media_gallery .gallery.grid {
  display: flex;
  flex-wrap: wrap;
}
.widget.widget_media_gallery .gallery.grid .gallery-item {
  width: 33.3333%;
  width: calc(33.3333% - 16px);
  float: none;
  margin-right: 16px !important;
  margin-bottom: 16px !important;
}
.widget.widget_media_gallery .gallery.grid .gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Sidebar | Custom Widget-Recent Posts */
.widget.thst_recent_blog_widget {
  padding:0;
}
.widget.thst_recent_blog_widget .recent_tabs {
  width: 100%;
  display: none;
}
.widget.thst_recent_blog_widget .acco_loading {
  padding:20px;
  background: url('img/270.GIF') no-repeat center center;
}
.widget.thst_recent_blog_widget .ui-tabs-nav {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  border-radius:3px 3px 0 0;
  -moz-border-radius:3px 3px 0 0;
  -wekit-border-radius:3px 3px 0 0;
  -o-border-radius:3px 3px 0 0;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  background-color: #f1f1f1;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  width: 33.3333%;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li:first-child {
}
.widget.thst_recent_blog_widget .ui-tabs-nav li:last-child {
}
.widget.thst_recent_blog_widget .ui-tabs-nav li a {
  padding: 15px 0;
  display: block;
  text-align: center;
  float:none;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li a:link,
.widget.thst_recent_blog_widget .ui-tabs-nav li a:visited {
  color: #fff;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li a:hover {
  color: #464646;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li.ui-tabs-active {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  background-color: #fff;
}
footer .widget.thst_recent_blog_widget .ui-tabs-nav {
  background-color: #fff;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li.ui-tabs-active a:link,
.widget.thst_recent_blog_widget .ui-tabs-nav li.ui-tabs-active a:visited {
  padding: 15px 0;
  text-indent: 0;
  width: auto;
  background-image: none;
  color: #464646;
}
.widget.thst_recent_blog_widget .ui-tabs-panel {
  background: #fff;
  border-radius: 0 0 3px 3px;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article {
  padding: 24px;
  border-bottom:1px solid #eee;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article:last-child {
  border: none;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article img {
  float: left;
  margin-right: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  height: 50px;
  width: 50px;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article .text {
  padding: 5px 0;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article .text a:link,
.widget.thst_recent_blog_widget .ui-tabs-panel article .text a:visited {
  color: #464646;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article .text h4 {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget.thst_recent_blog_widget .ui-tabs-panel article .text .date {
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  margin: 7px 0 0 0;
  color: #1c7473;
}
.widget.thst_recent_blog_widget .ui-tabs-nav li.ui-tabs-active a:active,
.widget.thst_recent_blog_widget .ui-tabs-nav li.ui-tabs-active a:focus {
  outline: none;
}

/* Sidebar | Text Widget */
.widget select {
  max-width: 100%;
  min-width: 100%;
  text-overflow: ellipsis;
}
.widget.widget_text .textwidget img {
  max-width: 100%;
  height: auto;
}
.widget.widget_text .textwidget select {
  max-width: 100%;
  width: 100px;
  text-overflow: ellipsis;
}
.widget.widget_text .textwidget select option {
  max-width: 100%;
  width: 100px;
  text-overflow: ellipsis;
}
footer .widget.widget_text .textwidget {
  padding: 0;
}

/* Sidebar | Highlighted Category */
.thst_highlight_category_widget.widget {
  border: none;
  padding: 0;
}
.thst_highlight_category_widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget.thst_highlight_category_widget ul li {
  padding: 0;
  margin:0;
}
.widget.thst_highlight_category_widget ul li a {
  padding: 0;
  margin:0;
}
.thst_highlight_category_widget ul li .text {
  padding: 24px;
  border-bottom:1px solid #eee;
}
.thst_highlight_category_widget ul li:last-child .text {
  padding: 24px;
  border:none;
}
.thst_highlight_category_widget ul li .text .h_title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.thst_highlight_category_widget ul li .text .h_date {
  font-size: 12px;
}
.thst_highlight_category_widget ul li .text .h_author {
  font-size: 12px;
}
.widget.thst_highlight_category_widget ul li:first-child {
  position:relative;
}
.thst_highlight_category_widget ul li:first-child .text {
  border: none;
  padding: 24px;
  background-image: none;
  position:relative;
  width:100%;
  bottom: 0;
  background-color: #199fdd;
}
.thst_highlight_category_widget ul li:first-child .text a:link,
.thst_highlight_category_widget ul li:first-child .text a:visited {
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.thst_highlight_category_widget ul li:first-child .text a:hover {
  color: rgba(0, 0, 0, 0.7);
}
.thst_highlight_category_widget ul li:first-child .text:after {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.thst_highlight_category_widget ul li:first-child .text.arrow:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #199fdd;
  border-width: 11px;
  left: 75%;
  margin-left: -11px;
}
.thst_highlight_category_widget ul li:first-child .text .h_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.thst_highlight_category_widget ul li:first-child .text .h_date {
  display: none;
  white-space: nowrap;
}
.thst_highlight_category_widget ul li:first-child .text .h_author {
  font-size: 12px;
  font-weight: 600;
  margin-left: 0;
  color: #ededed;
  white-space: nowrap;
}
.thst_highlight_category_widget ul li img {
  display:none;
}
.thst_highlight_category_widget ul li:first-child img {
  width:100%;
  height:auto;
  display: block;
}

/* Sidebar | RSS Feed*/
.widget.widget_rss ul li {
  margin-bottom:14px;
}
.widget.widget_rss ul li .rsswidget {
  font-weight:600;
}
.widget.widget_rss ul li cite {
  font-weight: 600;
  font-size: 14px;
}

/* Sidebar | Custom Widget-Recent Comments (Recent Comments) */
.widget.thst_recent_comments_widget {
  padding-left: 0;
  padding-right: 0;
}
.widget.thst_recent_comments_widget h3 {
  padding:0 24px 0 24px;
}
.single .widget.thst_recent_comments_widget h3,
.post .widget.thst_recent_comments_widget h3 {
  padding: 0;
}

.widget.widget_recent_comments ul li.recentcomments {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget.thst_recent_comments_widget ul {
  font-size: 0.9em;
}
.widget.thst_recent_comments_widget ul li.recentcomments {
  padding: 24px;
  border-bottom:1px solid #eee;
}
.single .widget.thst_recent_blog_widget .ui-tabs-panel article,
.page:not(.has-front-page-template) .widget.thst_recent_blog_widget .ui-tabs-panel article {
  padding-left: 0;
  padding-right: 0;
}
.single .widget.thst_recent_comments_widget ul li.recentcomments,
.page:not(.has-front-page-template) .widget.thst_recent_comments_widget ul li.recentcomments {
  padding-left: 0;
  padding-right: 0;
}
.page.home .widget.thst_recent_comments_widget ul li.recentcomments {
  padding-left: 24px;
  padding-right: 24px;
}
.widget.thst_recent_comments_widget ul li.recentcomments:first-child {
  padding-top: 0;
}
.widget.thst_recent_comments_widget ul li.recentcomments:last-child {
  border: none;
  padding-bottom: 0;
}
.widget.thst_recent_comments_widget ul li.recentcomments .text {
  padding: 0 10px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget.thst_recent_comments_widget ul li.recentcomments .text a {
  font-weight: 600;
}
.widget.thst_recent_comments_widget ul .recentcomments img.avatar {
  margin-right: 20px;
  display: block;
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .widget.thst_recent_comments_widget ul .recentcomments img.avatar {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.widget.thst_recent_comments_widget ul li.recentcomments .date {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  margin: 0;
  line-height: 12px;
}

/* Sidebar | MC Form */
.widget.widget_mc4wp_form_widget form.mc4wp-form input[type="submit"] {
  padding: 12px 28px;
  margin-top: 12px;
}
.widget.widget_mc4wp_form_widget form.mc4wp-form input[type="text"],
.widget.widget_mc4wp_form_widget form.mc4wp-form input[type="email"],
.widget.widget_mc4wp_form_widget form.mc4wp-form input[type="password"] {
  width: 100%;
}
footer .widget .tagcloud a:link,
footer .widget .tagcloud a:visited {
  background-color: #1c1f21;
  border-radius: 3px 3px 3px 3px;
  color: #eee;
  display: inline-block;
  font-size: 14px !important;
  line-height: 25px;
  margin: 0 5px 6px 0;
  padding: 0 8px;
}
footer .widget .tagcloud a:hover {
  background-color:#111314;
}
.widget .podcast {
  margin: 0 0 25px 0;
}
/* Sidebar | Media Widgets (Audio, Video, Image - since WP 4.8) */
.widget.widget_media_audio .mejs-container.mejs-audio {
  height: 54px !important;
}
.widget.widget_media_audio .mejs-container .mejs-controls,
.widget.widget_media_video .mejs-container .mejs-controls {
  padding: 0 12px;
  height: 54px;
}
.widget.widget_media_audio .mejs-container .mejs-controls .mejs-time,
.widget.widget_media_audio .mejs-container .mejs-controls .mejs-button,
.widget.widget_media_audio .mejs-container .mejs-controls .mejs-button button,
.widget.widget_media_audio .mejs-container .mejs-controls .mejs-horizontal-volume-slider,

.widget.widget_media_video .mejs-container .mejs-controls .mejs-time,
.widget.widget_media_video .mejs-container .mejs-controls .mejs-button,
.widget.widget_media_video .mejs-container .mejs-controls .mejs-button button,
.widget.widget_media_video .mejs-container .mejs-controls .mejs-horizontal-volume-slider {
  height: 54px;
}
.widget.widget_media_audio .mejs-container .mejs-controls .pod-mejs-controls-inner .mejs-time,
.widget.widget_media_video .mejs-container .mejs-controls .pod-mejs-controls-inner .mejs-time {
  width: 60px;
}
.widget.widget_media_audio .mejs-container .mejs-controls .pod-mejs-controls-inner .mejs-horizontal-volume-slider {
  width: 42px;
}
.widget .mejs-container .mejs-overlay-button {
  height: 50px;
  width: 50px;
}
.widget .mejs-container .mejs-overlay-button::before {
  font-size: 16px;
}

/* Sidebar | Tool Tips */
.pdc-tooltips {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 0;
  background: #199fdd
  color: #282c2f;
}
.pdc-tooltips .tooltipster-content {
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
}
.pdc-tooltips .tooltipster-content a {
  color: #fff;
}



/*
 * 14 | Shortcodes
 *-----------------------------------------------------------------*/
a.thst-button,
a.thst-button:visited {
  text-shadow: none;
  font-family: 'Niramit', 'Arial', sans-serif;
  font-size: 16px !important;
  font-size: calc(0.875rem + 0.1vw) !important;
  padding: 12px 36px !important;
  display:inline-block;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
}
a.thst-button.small {
  border-radius: 3px;
  font-size: 16px !important;
  padding: 12px 36px !important;
}
a.thst-button.medium {
    border-radius: 3px;
    font-size: 16px !important;
    font-size: calc(0.875rem + 0.1vw) !important;
    padding: 18px 54px !important;
}
a.thst-button.large {
    border-radius: 3px;
    font-size: 22px !important;
    font-size: calc(1rem + 0.1vw) !important;
    padding: 24px 72px !important;
}
a.thst-button.green {
  background: #B1D960;
  border-color: transparent !important;
}
a.thst-button.green:hover {
  background: #B9E46A;
}
a.thst-button.light-blue {
  background: #46CAE8;
  border-color: transparent !important;
}
a.thst-button.light-blue:hover {
  background: #50D6F5;
}
a.thst-button.blue {
  background: #14A7CF;
  border-color: transparent !important;
}
a.thst-button.blue:hover {
  background: #1BB6E6;
}
a.thst-button.red {
  background: #ED8376;
  border-color: transparent !important;
}
a.thst-button.red:hover {
  background: #FF988C;
}
a.thst-button.orange {
  background: #FFCE4F;
  border-color: transparent !important;
}
a.thst-button.orange:hover {
  background: #FFDB4F;
}
a.thst-button.purple {
  background: #E3ACDC;
  border-color: transparent !important;
}
a.thst-button.purple:hover {
  background: #F3BAEC;
}
a.thst-button.grey {
  background: #EFEFEF;
  border-color: transparent !important;
  color: #555555 !important;
  text-shadow: none;
}
a.thst-button.grey:hover {
  background: #FCFCFC;
}
a.thst-button.black {
  background: #6C6C6C;
  border-color: transparent !important;
}
a.thst-button.black:hover {
  background: #8D8D8D;
}

/* Shortcodes | Tabs */
.thst-tabs .thst-nav li a {
  padding: 12px 24px;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.thst-tabs .thst-tab {
  padding: 24px;
  line-height: 34px;
  background: transparent;
}

/* Shortcodes | Toggles */
.thst-toggle {
  margin-top:20px;
}
.thst-toggle .thst-toggle-title {
  padding: 16px 15px 16px 30px;
  background: #e5e5e5;
  border-color:#ffffff;
}
.thst-toggle .thst-toggle-title.ui-accordion-header-active {
  border-color:#c5c5c5;
}
.thst-toggle-inner {
  line-height: 34px;
  padding: 30px;
  background: transparent;
}

/* Shortcodes | Alerts */
.thst-alert {
  border-radius: 4px 4px 4px 4px !important;
  box-shadow: none;
  line-height: 1.6em;
  margin: 0 0 1.5em;
  padding: 0.8em;
}
.thst-alert.white {
  background: none repeat scroll 0 0 #FFFFFF;
  color: #373737;
}
.thst-alert.red {
  background: none repeat scroll 0 0 #FFE6E3;
  border: transparent;
  color: #BF210E;
}
.thst-alert.yellow {
  background: none repeat scroll 0 0 #FFF7D6;
  border: transparent;
  color: #956433;
}
.thst-alert.green {
  background: none repeat scroll 0 0 #EDFDD3;
  border: transparent;
  color: #657E3C;
}
.thst-alert.grey {
  background: none repeat scroll 0 0 #eee;
  border: transparent;
  color: #373737;
}

/* Shortcodes | Pre-Footer */
.sub-footer {
  background-color: #282d31;
  font-size: 16px;
  padding: 25px 0;
  color: #ddd;
}
.sub-footer a:link,
.sub-footer a:visited {
  color: #ddd;
}
.sub-footer a:hover {
  color: #eee;
}
.sub-footer .thst-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
  font-size: 14px;
}
.sub-footer .thst-menu li {
  display: inline-block;
  margin-left: 40px;
}



/*
 * 15 | Footer
 *-----------------------------------------------------------------*/
footer.main-footer {
  background-color: #d3d3d3;
}
footer.main-footer .footer-widgets {
  background: rgba(0,0,0,0.05);
  color: #555;
  padding-top: 100px;
  padding-bottom: 100px;
}
footer .footer-menu {
  background-color: #17191a;
  color: #fff;
  padding: 0 0 50px 0;
  text-align: center;
}
footer .footer-menu .title {
  padding: 50px 0;
}
footer .footer-menu h3 {
  margin: 15px 0;
}
footer.main-footer a:link,
footer.main-footer a:visited {
  color: #555;
  font-weight: 600;
}
footer.main-footer a:hover {
  color: #444;
}
footer.main-footer .footer-menu .content.title h3 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
}

/* Footer | Navigation */
footer.main-footer nav {
  margin: 10px 0;
  font-size: 14px;
}
footer.main-footer nav .thst-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.main-footer nav .thst-menu li {
  display: inline-block;
  position: relative;
  padding: 15px 0;
}
footer.main-footer nav .thst-menu li a {
  padding: 15px;
  background-color: transparent;
  color: #fff;
}
footer.main-footer nav .thst-menu li a:hover {
  color: #eee;
}
footer.main-footer nav .thst-menu li .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
footer.main-footer nav .thst-menu li:hover > .sub-menu {
  display: block;
  position: absolute;
  top: 60px;
  background: #ccc;
}
footer.main-footer nav .thst-menu li:hover > .sub-menu li {
  display: block;
}


/*
 * Lightbox
 *-----------------------------------------------------------------*/
.lb-outerContainer {
  border-radius: 0;
  width: 100%;
  position: relative;
}
.lb-dataContainer {
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.lb-container {
  padding: 0;
}
.lb-outerContainer .lb-container img {
  display: block;
  border-radius: 0;
}
.lb-data .lb-caption {
  font-weight: 400;
  line-height: 1.7;
}
.lb-data .lb-number {
  padding: 20px !important;
  text-transform: uppercase;
}
.lb-nav .lb-next,
.lb-nav .lb-prev {
  font-family: 'FontAwesome';
  font-weight: 900;
  color: transparent;
  font-size: 32px;
}
.lb-nav .lb-next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.lb-nav .lb-next:before {
  content: "\f054";
  padding: 12px 5px;
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -8px;
}
.lb-nav .lb-prev:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.lb-nav .lb-prev:before {
  content: "\f053";
  padding: 12px 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -8px;
}
.lb-data {
  color: #444;
}
.lb-data .lb-caption {
  padding: 20px;
  background-color: #fff;
  display: block;
}
.lb-data .lb-details {
  float: none;
}
.lb-loader .lb-cancel {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  background-color: transparent;
  background-image: url(img/270.GIF);
  text-align: center;
}
.lb-data .lb-close {
  position: absolute;
  display: block;
  padding: 10px;
  width: 25px;
  height: 25px;
  right: 5px;
  top: 5px;
  text-indent: -9999px;
  font-family: 'FontAwesome';
  font-weight: 900;
}
.lb-data .lb-close:before {
  content: "\f00d";
  color: #206565;
  padding: 12px 5px;
  display: block;
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .lb-data .lb-caption {
    font-size: 14px;
  }
}
.lb-data .lb-close img {
  display: block;
  opacity: 0;
  filter: alpha(opacity=0);
}



/*
 * 16 | Social Media Icons
 *-----------------------------------------------------------------*/
.social_container.footer-inner {
  text-align: right;
}
.social_icon {
  font-family: FontAwesomeBrands;
  color:#fff;
  height:16px;
  width:16px;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
.social_icon:before {
  font-family: FontAwesomeBrands;
  display: inline-block;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  padding:10px;
  color:#fff;
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
  margin-bottom:5px;
  transition-duration:0.4s;
  -moz-transition-duration:0.4s;
  -webkit-transition-duration:0.4s;
  -o-transition-duration:0.4s;
}
.dark-icons .social_icon:before {
  color:#222;
}
.social_icon:hover:before {
  transition-duration:0.4s;
  -moz-transition-duration:0.4s;
  -webkit-transition-duration:0.4s;
  -o-transition-duration:0.4s;
}
.social_icon a:link,
.social_icon a:visited {
  color:#fff;
}
.facebook.social_icon:before {
  content: "\f082";
}
.facebook.social_icon:hover:before {
  background-color:#3b5998;
}
.twitter.social_icon:before {
  content: "\f081";
}
.twitter.social_icon:hover:before {
  background-color:#00aced;
}
.google.social_icon:before {
  content: "\f0d4";
}
.google.social_icon:hover:before {
  background-color:#dd4b39;
}
.instagram.social_icon:before {
  content: "\f16d";
}
.instagram.social_icon:hover:before {
  background-color:#517fa4;
}
.soundcloud.social_icon:before {
  content: "\f1be";
}
.soundcloud.social_icon:hover:before {
  background-color:#ff8800;
}
.tumblr.social_icon:before {
  content: "\f174";
}
.tumblr.social_icon:hover:before {
  background-color:#32506d;
}
.pinterest.social_icon:before {
  content: "\f0d3";
}
.pinterest.social_icon:hover:before {
  background-color:#cb2027;
}
.flickr.social_icon:before {
  content: "\f16e";
}
.flickr.social_icon:hover:before {
  background-color:#ff0084;
}
.youtube.social_icon:before {
  content: "\f167";
}
.youtube.social_icon:hover:before {
  background-color:#bb0000;
}
.vimeo.social_icon:before {
  content: "\f194";
}
.vimeo.social_icon:hover:before {
  background-color:#1ab7ea;
}
.skype.social_icon:before {
  content: "\f17e";
}
.skype.social_icon:hover:before {
  background-color:#00AFF0;
}
.dribbble.social_icon:before {
  content: "\f17d";
}
.dribbble.social_icon:hover:before {
  background-color:#ea4c89;
}
.weibo.social_icon:before {
  content: "\f18a";
}
.weibo.social_icon:hover:before {
  background-color:#E6162D;
}
.foursquare.social_icon:before {
  content: "\f180";
}
.foursquare.social_icon:hover:before {
  background-color:#0072b1;
}
.github.social_icon:before {
  content: "\f092";
}
.github.social_icon:hover:before {
  background-color:#171515;
}
.xing.social_icon:before {
  content: "\f169";
}
.xing.social_icon:hover:before {
  background-color:#126567;
}
.linkedin.social_icon:before {
  content: "\f0e1";
}
.linkedin.social_icon:hover:before {
  background-color: #007bb6;
}
.email.social_icon:before {
  font-family: FontAwesome;
  font-weight: 900;
  content: "\f0e0";
}
.email.social_icon:hover:before {
  background-color: rgba(0,0,0,0.45);
}
.snapchat.social_icon:before {
  content: "\f2ad";
}
.snapchat.social_icon:hover:before {
  background-color: #fffc00;
}
.twitch.social_icon:before {
  content: "\f1e8";
}
.twitch.social_icon:hover:before {
  background-color: #6441a5;
}
.mixcloud.social_icon:before {
  content: "\f289";
}
.mixcloud.social_icon:hover:before {
  background-color: #589fC3;
}
.spotify.social_icon:before {
  content: "\f1bc";
}
.spotify.social_icon:hover:before {
  background-color: #2ebd59;
}
.itunes.social_icon:before {
  content: "\f179";
}
.itunes.social_icon:hover:before {
  background-color: #000;
}
.rss.social_icon:before {
  font-family: FontAwesome;
  font-weight: 900;
  content: "\f143";
}
.rss.social_icon:hover:before {
  background-color: #f26522;
}
.android.social_icon:before {
  content: "\f17b";
}
.android.social_icon:hover:before {
  background-color: #a4c639;
}
.medium.social_icon {
  padding: 0;
}
.medium.social_icon:before {
  content: "\f3c7";
}
.medium.social_icon:hover:before {
  background-color: #00ab6c;
}
.periscope.social_icon:before {
  content: "\f3da";
}
.periscope.social_icon:hover:before {
  background-color: #3aa4c6;
}
.patreon.social_icon:before {
  content: "\f3d9";
}
.patreon.social_icon:hover:before {
  background-color: #f96854;
}
.paypal.social_icon:before {
  content: "\f1ed";
}
.paypal.social_icon:hover:before {
  background-color: #009cde;
}
.whatsapp.social_icon:before {
  content: "\f232";
}
.whatsapp.social_icon:hover:before {
  background-color: #128c7e;
}

/* Social Media Icons | Header */
.above .social_container {
  float: right;
  padding: 39px 0;
  margin-left: 24px;
  text-align: right;
  order: 3;
}
.above.small_nav .social_container {
  padding:22px 0;
}
.above .social_icon {
  color:#fff;
  height:16px;
  width:16px;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right:5px;
}
.above .social_icon:last-child {
  margin-right: 0;
}
.above .social_icon:before {
  display: inline-block;
  font-size: 18px;
  font-size: calc(0.875rem + 0.21vw);
  font-style: normal;
  font-weight: normal;
  padding: 0;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border-radius: 3px;
  margin-bottom: 5px;
}
.dark-icons .above .social_icon:before {
  color: rgba(0,0,0,0.4);
}
.above .social_icon:hover:before {
  background: transparent;
  font-size: 24px;
}
.above .facebook.social_icon:hover:before {
  color:#3b5998 !important;
}
.above .twitter.social_icon:hover:before {
  color:#00aced !important;
}
.above .google.social_icon:hover:before {
  color:#dd4b39 !important;
}
.above .instagram.social_icon:hover:before {
  color:#517fa4 !important;
}
.above .soundcloud.social_icon:hover:before {
  color:#ff8800 !important;
}
.above .snapchat.social_icon:hover:before {
  color: #fffc00 !important;
}
.above .twitch.social_icon:hover:before {
  color: #6441a5 !important;
}
.above .mixcloud.social_icon:hover:before {
  color: #589fC3 !important;
}
.above .spotify.social_icon:hover:before {
  color: #2ebd59 !important;
}
.above .itunes.social_icon:hover:before {
  color: #000 !important;
}
.above .rss.social_icon:before {
  font-weight: 900;
  font-family: 'FontAwesome';
}
.above .rss.social_icon:hover:before {
  color: #f26522 !important;
}
.above .tumblr.social_icon:hover:before {
  color:#32506d !important;
}
.above .pinterest.social_icon:hover:before {
  color:#cb2027 !important;
}
.above .flickr.social_icon:hover:before {
  color:#ff0084 !important;
}
.above .youtube.social_icon:hover:before {
  color:#bb0000 !important;
}
.above .vimeo.social_icon:hover:before {
  color:#1ab7ea !important;
}
.above .skype.social_icon:hover:before {
  color:#00AFF0 !important;
}
.above .dribbble.social_icon:hover:before {
  color:#ea4c89 !important;
}
.above .weibo.social_icon:hover:before {
  color:#E6162D !important;
}
.above .foursquare.social_icon:hover:before {
  color:#0072b1 !important;
}
.above .github.social_icon:hover:before {
  color:#171515 !important;
}
.above .xing.social_icon:hover:before {
  color:#126567 !important;
}
.above .linkedin.social_icon:hover:before {
  color: #007bb6 !important;
}
.above .email.social_icon:hover:before {
  color: rgba(255,255,255,0.45);
}
.above .android.social_icon:hover:before {
  color: #a4c639 !important;
}
.above .medium.social_icon:hover:before {
  color: #00ab6c !important;
}
.above .periscope.social_icon:hover:before {
  color: #3aa4c6 !important;
}
.above .patreon.social_icon:hover:before {
  color: #f96854 !important;
}
.above .paypal.social_icon:hover:before {
  color: #009cde !important;
}
.above .whatsapp.social_icon:hover:before {
  color: #128c7e !important;
}



/*
 * 17 | Responsive Settings
 *-----------------------------------------------------------------*/
 /* 17.1 | Responsive Browser-specific settings
------------------------------------------------*/
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  box-shadow: none;
  -webkit-appearance: none;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  box-shadow: none;
  outline: 0 none;
  -webkit-appearance: none;
}

/*Pull Left & Right*/
.pulls-left {
  float: left;
  order: 1;
}
.pulls-right {
  float: right;
  order: 2;
}