/* MAIN MENU */
body.main-menu-open {
  overflow-y: hidden;
}
#main-menu {
  position: fixed;
  top: 0;
  z-index: 4;
  margin-top: 70px;
  left: 0;
  transition: all 0.3s;
  width: 0;
  height: 100%;
  overflow: hidden;
}
.scroll-down #main-menu {
  margin-top: 130px;
}
.main-menu-open #main-menu {
  width: 100%;
}
#main-menu > .inner {
  display: flex;
  height: 100%;
  padding-bottom: 70px;
}
.scroll-down #main-menu > .inner {
  padding-bottom: 130px;
}

#main-menu a {
  text-decoration: none;
  color: inherit;
}
#main-menu-list {
  background-color: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 0;
  min-width: 20vw;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
  position: relative;
}
#main-menu-list .sub-menu {
  display: none;
}
#main-menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#main-menu-list a {
  font-size: 2.5rem;
  padding: 10px 30px;
  display: block;
  text-transform: uppercase;
}
#main-menu-list li:hover,
#main-menu-list li.extended {
  background-color: #eaeaea;
}
#main-menu-list .spacer {
  flex-grow: 1;
}

#main-menu-list #menu-settings {
  padding: 0 20px;
}
#main-menu-list #menu-settings .setting-row {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
#main-menu-list #menu-settings .setting-row .label {
  flex-grow: 1;
}

#main-menu-submenu {
  width: 0;
  transition: all 0.1s;
  background-color: #f7f7f7;
  overflow-y: auto;
  font-weight: 200;
}
#main-menu.submenu-opened #main-menu-submenu {
  width: 25vw;
}
#main-menu-submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#main-menu-submenu > ul {
  padding: 30px 0;
}
#main-menu-submenu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
#main-menu-submenu ul li a {
  font-size: 2.1rem;
  padding: 7px 30px;
  display: block;
  text-transform: uppercase;
}
#main-menu-submenu ul li:hover > a {
  background-color: #dbdbdb;
}

#main-menu-submenu ul li .sub-menu a {
  font-size: 1.8rem;
  padding-left: 50px;
}
#main-menu .open-submenu {
  display: none;
}

#main-menu-details {
  flex-grow: 1;
  flex-basis: 0;
  padding: 30px;
  overflow-y: scroll;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

/* FOOTER */
#footer {
  background-color: #f2f2f2;
  overflow: hidden;
  padding: 40px 0;
}
#footer > * {
  margin: 30px auto;
}
#footer-logo {
  max-width: 300px;
  display: block;
}
#footer-logo img {
  width: 100%;
  height: auto;
}
#footer-search {
}
#footer-search form {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
#footer-search form > * {
  height: 45px;
  vertical-align: middle;
}
#footer-search input {
  display: inline-block;
  flex-grow: 1;
  padding: 10px;
  margin: 0;
  margin-right: -1px;
}
#footer-search button {
  display: inline-block;
  border: 1px solid #e30613;
}
#footer .mkt-area {
  max-width: 970px;
  text-align: center;
  background: #d0d0d0;
}
#footer-tags {
  text-align: center;
  max-width: 1000px;
}
#footer-tags .title {
  font-weight: 200;
}
#footer-tags .tag-box {
  margin-top: 30px;
}
#footer-tags .chip {
  background-color: #e30613;
  color: #fff;
}

#footer-menus {
  padding: 40px 0;
}
#footer-menus .container {
  display: flex;
  flex-wrap: wrap;
}
#footer-menus .menu {
  flex-basis: 20%;
  padding-right: 10px;
}
#footer-menus .menu ul {
  list-style: none;
  padding: 0;
}
#footer-menus .menu ul li {
  margin-bottom: 3px;
}
#footer-menus .menu ul li a {
  text-decoration: none;
  color: inherit;
}
#footer-menus .menu ul li a:hover {
  text-decoration: underline;
}
#footer-menus .title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#footer-menus .spacer {
  flex-grow: 1;
}
#footer-menus #footer-right {
  flex-basis: 40%;
  text-align: right;
}
#footer-social {
  margin-bottom: 30px;
}
#footer-menus .social-icons a {
  font-size: 20px;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  margin-left: 5px;
  transition: all 0.3s;
}
#footer-menus .social-icons a:hover {
  background-color: #e30613;
  color: #fff;
}

#copyright {
  text-align: center;
  padding: 30px 0;
}

/* AJAX navigation */
#ns-ajax {
  min-height: 80vh;
  width: 100%;
  transition: all 1s;
  opacity: 1;
}
#ns-ajax.loading {
  opacity: 0;
}
#ns-ajax.loading {
  display: flex;
  align-items: center;
}

/* Breadcrumbs */
#breadcrumbs {
  font-size: 1.8rem;
}
#breadcrumbs a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
#breadcrumbs > span {
  display: inline-block;
  margin-right: 10px;
}
#breadcrumbs .itemListElement {
}
#breadcrumbs .sep {
  border: 1px solid #999;
  transform: rotate(30deg);
  height: 15px;
  position: relative;
  top: 2px;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination > * {
  background-color: #f2f2f2;
  padding: 7px 14px;
  margin: 0 5px;
}
.pagination > a {
  background-color: #e30613;
  border: 1px solid #e30613;
  color: #fff;
}
.pagination > a:hover {
  background-color: #fff;
  color: #e30613;
}

/* Notifications popup */
.ns-notification-popup {
  position: fixed;
  bottom: -300px;
  left: 20px;
  background-color: #e30613;
  z-index: 2001;
  transition: all 0.2s;
}
.ns-notification-popup.active {
  bottom: 0;
}
.ns-notification-popup .text-second {
  display: none;
}
.ns-notification-popup.second-step .text-second {
  display: block;
}
.ns-notification-popup.second-step .text-first {
  display: none;
}
.ns-notification-popup.second-step .footer {
  display: none;
}

/* Page Template - Single Article */
.single-post .post-body {
  position: relative;
  padding-right: 320px;
}
.single-post .post-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 320px;
}
.single-post .post-sidebar > .inner {
  position: -webkit-sticky;
  position: sticky;
  top: 220px;
  transition: all 0.3s;
  padding-left: 20px;
}
.scroll-down .single-post .post-sidebar > .inner {
  top: 150px;
}
.single-post .post-info {
  color: #888;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.single-post .post-info > .spacer {
  flex-grow: 1;
}
.single-post .post-info > .social {
  color: #333;
}
.single-post .post-info > .social > * {
  padding-left: 5px;
  display: inline-block;
  cursor: pointer;
}
.single-post .post-info > .social > .active {
  color: #e30613;
}
.single-post .post-info .chip {
  margin-top: 0;
  margin-bottom: 0;
}
.single-post .post-info .chip.active {
}
.single-post .post-info .body-text-size {
  padding-right: 10px;
  cursor: pointer;
}
.single-post .post-body .post-tags a {
  display: inline-block;
  text-transform: lowercase;
  background-color: #e3e0e0;
  border-radius: 3px;
  margin: 5px;
  padding: 0 6px;
  color: #333333;
  text-decoration: none;
}
.single-post .post-content img {
  max-width: 100%;
  height: auto;
}
/*.single-post .post-content .mkt-area iframe {max-width: 100%;height: auto;} not sure what this does */
.single-post .post-content table {
  max-width: 100%;
}
.single-post .post-content a {
  text-decoration: underline;
}
.single-post .post-title {
  position: relative;
}

body .single-post.breaking .post-title::after {
  top: -56px;
}

body .single-post.breaking .post-title,
body .single-post.exclusive .post-title,
body .single-post.original .post-title {
  margin-top: 60px;
}
body .single-post.breaking .post-title:before,
body .single-post.original .post-title:before,
body .single-post.exclusive .post-title:before {
  top: -56px;
}

body .single-post.breaking.exclusive .post-title::before {
  top: -56px;
}
body .single-post.breaking.exclusive .post-title::after {
  top: -56px;
  left: 115px;
}
body .single-post.breaking.original .post-title::after {
  top: -56px;
  left: 115px;
}

/* Page Template - Single Song */
.single-post.song .song-details {
  display: flex;
  align-items: center;
}
.single-post.song .song-details .song-image {
  width: 100px;
}
.single-post.song .song-details .song-name {
  flex-grow: 1;
}
.single-post.song .song-details .song-name > * {
  margin: 0;
}

/* Tabs */
.ns-tabs .tab-titles {
  display: flex;
}
.ns-tabs .tab-titles > div {
  display: inline-block;
  padding: 10px 20px;
  border-bottom: 4px solid #ddd;
  margin-bottom: -1px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
.ns-tabs .tab-titles > div.active {
  border-bottom: 4px solid #e30613;
  color: #e30613;
  font-weight: bold;
  background-color: transparent;
}
.ns-tabs .tab-contents {
  padding: 30px;
  border: 1px solid #ddd;
}
.ns-tabs .tab-contents .ns-tab-title {
  display: none;
}
.ns-tabs .tab-contents > div {
  display: none;
}
.ns-tabs .tab-contents > div.active {
  display: block;
}
.ns-tabs .tab-contents img {
  max-width: 100%;
  height: auto;
}

/* Accordion */
.ns-accordion .ns-accordion-panel {
  margin-bottom: -1px;
}
.ns-accordion .ns-accordion-panel .ns-accordion-panel-title {
  border: 1px solid #ccc;
  padding: 10px 20px;
  background-color: rgba(200, 200, 200, 0.2);
  display: flex;
}
.ns-accordion .ns-accordion-panel .ns-accordion-panel-title .title {
  flex-grow: 1;
}
.ns-accordion .ns-accordion-panel.active .ns-accordion-panel-title {
  background-color: transparent;
  font-weight: bold;
}
.ns-accordion .ns-accordion-panel .right {
  transition: all 0.3s;
}
.ns-accordion .ns-accordion-panel.active .right {
  transform: rotate(90deg);
}
.ns-accordion .ns-accordion-panel .ns-accordion-panel-content {
  max-height: 0;
  transition: all 0.2s;
  border: 1px solid #ccc;
  margin-top: -1px;
  overflow: hidden;
}
.ns-accordion .ns-accordion-panel-content .inner {
  margin: 30px;
}
.ns-accordion .ns-accordion-panel.active .ns-accordion-panel-content {
  max-height: 1000px;
  overflow-y: auto;
}

/* Newsbox */
.newsbox .newsbox-title {
  display: flex;
  color: #e30613;
  text-transform: uppercase;
}
.newsbox .newsbox-title .spacer {
  flex-grow: 1;
}
.newsbox .newsbox-post-category a {
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
}

.newsbox-post .newsbox-post-image {
  cursor: pointer;
  margin-bottom: 5px;
  overflow: hidden;
}
.newsbox-post .newsbox-post-image img {
  transition: all 0.2s;
}
.newsbox-post .newsbox-post-image a {
  display: block;
}
.newsbox.default .newsbox-post:hover .newsbox-post-image img,
.newsbox.ns-carousel .newsbox-post:hover .newsbox-post-image img {
  transform: scale(1.1) translate(0, -50%);
}
.newsbox-post .newsbox-post-category {
  font-weight: bold;
  margin-top: 15px;
}

.newsbox .newsbox-post {
  position: relative;
}
.newsbox .newsbox-post .newsbox-post-excerpt {
}
.newsbox .newsbox-post .newsbox-post-title {
  cursor: pointer;
}
.newsbox .newsbox-post:hover .newsbox-post-title {
  color: #000;
}
.newsbox .newsbox-post .newsbox-post-title a {
  color: inherit;
  text-decoration: none;
}
.newsbox .newsbox-post .newsbox-post-date {
  color: rgba(200, 200, 200, 0.8);
}

/* 
.newsbox .newsbox-post-info {
  height: 220px;
  overflow: hidden;
}
*/

.newsbox .newsbox-post-info {
  height: auto!important;
  overflow: hidden;
}

.newsbox.fade .newsbox-post-info:after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 10px;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.newsbox.fade .exclusive .newsbox-post-info:after,
.newsbox.fade .breaking .newsbox-post-info:after,
.newsbox.fade .original .newsbox-post-info:after {
  display: none;
}
.dark-mode .newsbox.fade .newsbox-post-info:after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.newsbox .col-1 .newsbox-post-info {
  height: auto;
}
.newsbox .col-1 .img-height-normal {
  height: 400px;
}
.newsbox .newsbox-content > * > .inner {
  margin: 10px;
}
.newsbox .newsbox-content {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.newsbox .newsbox-post.mkt .inner {
  height: 100%;
  padding: 10px;
  overflow: hidden;
  margin: 0;
}
.newsbox .newsbox-post.mkt .mkt-area {
  height: 100%;
}

/* exclusive */
.newsbox .newsbox-post.exclusive a.newsbox-image-link:before,
.single-post.exclusive .post-title:before {
  content: "";
  color: #fff;
  background-image: url(../img/tag-exclusiv.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 105px;
  height: 51px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.newsbox .newsbox-post.exclusive .newsbox-post-title,
.single-post.exclusive .post-title {
  background-color: #e30613;
  color: #fff;
  padding: 8px 10px;
}

/* original */
.newsbox .newsbox-post.original a.newsbox-image-link:before,
.single-post.original .post-title:before {
  content: "";
  color: #fff;
  background-image: url(../img/tag-original.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 105px;
  height: 51px;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}
.newsbox .newsbox-post.original .newsbox-post-title,
.single-post.original .post-title {
  background-color: #e30613;
  color: #fff;
  padding: 8px 10px;
}

/* breaking */
.newsbox .newsbox-post.breaking a.newsbox-image-link:after,
.single-post.breaking .post-title:after {
  content: "";
  color: #fff;
  background-image: url(../img/tag-breaking.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 0;
  width: 105px;
  height: 51px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.newsbox .newsbox-post.breaking .newsbox-post-title,
.single-post.breaking .post-title {
  background-color: #ffff00;
  padding: 5px 10px;
  color: #3e3e3e;
}
.newsbox .newsbox-post.breaking.exclusive:before,
.single-post.breaking.exclusive .post-title:before {
  top: 50px;
}

.newsbox button.flickity-button-icon:hover {
  background-color: transparent;
}

/* Newsbox - compress */
.newsbox.compress .newsbox-post > .inner,
.newsbox.compress .newsbox-content {
  margin: 0;
}

/* Newsbox Modifiers */
.newsbox.red {
  padding-bottom: 20px;
}
.newsbox.red .newsbox-content {
  background-color: #e30613;
  color: #fff;
  padding: 20px;
}
.newsbox.red .newsbox-content a {
  color: #fff;
}
.newsbox.red .flickity-page-dots {
  left: 0;
  background-color: #e30613;
  padding: 10px 0;
  bottom: -21px;
}
.newsbox.red .flickity-page-dots .dot {
  background-color: #fff;
  cursor: pointer;
}

/* Newsbox - Latest News */
.newsbox.latest .newsbox-post-title {
  margin-bottom: 10px;
}
.newsbox.latest .newsbox-post .inner {
  display: flex;
  margin: 0;
}
.newsbox.latest .newsbox-post-info {
  height: auto;
  display: flex;
}
.newsbox.latest .newsbox-post .newsbox-post-date {
  flex-basis: 45px;
  flex-shrink: 0;
  flex-grow: 0;
  font-weight: bold;
  position: relative;
  color: inherit;
}
.newsbox.latest .newsbox-post .newsbox-post-date.simple {
  flex-basis: 30px;
}
.newsbox.latest .newsbox-content {
  margin: 0;
}

.newsbox.latest .newsbox-post.breaking:after {
  display: none;
}
.newsbox.latest .newsbox-post.exclusive:before {
  display: none;
}

.newsbox.latest .dot {
  flex-basis: 30px;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
}
.newsbox.latest .dot:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  background: #e30613;
  height: 100%;
}
.newsbox.latest .dot:after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e30613;
}

/* Newsbox - slider */
.newsbox.ns-slider {
  padding-bottom: 40px;
}
.newsbox.ns-slider .newsbox-content {
  margin: 0;
}
.newsbox.ns-slider .newsbox-post {
  width: 100%;
  cursor: auto;
}
.newsbox.ns-slider .newsbox-post.mkt-area {
  margin: 0;
  padding: 10px;
}
.newsbox.ns-slider .flickity-viewport {
  width: 100%;
}
.newsbox.ns-slider .newsbox-post .inner {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
}
.newsbox.ns-slider .newsbox-post-image {
  flex-grow: 1;
  position: relative;
  padding-bottom: 38%;
  margin-bottom: 0;
}
.newsbox.ns-slider .newsbox-post-image img {
  position: absolute;
  top: 50%;
  left: 0;
}
.newsbox.ns-slider .newsbox-post-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsbox.ns-slider .newsbox-post-category {
  display: none;
}
.newsbox.ns-slider .newsbox-post-info {
  flex-basis: 33.333%;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 20px;
  height: auto;
}

.newsbox.ns-slider .newsbox-post {
  display: none;
}
.newsbox.ns-slider .newsbox-post:first-child {
  display: block;
}
.newsbox.ns-slider .flickity-slider .newsbox-post {
  display: block;
}

/* Newsbox - Showcase */
.newsbox.showcase {
  padding-bottom: 40px;
}
.newsbox.showcase .newsbox-content {
  margin: 0;
  display: block;
}
.newsbox.showcase .newsbox-post {
  width: 100%;
  cursor: auto;
}
.newsbox.showcase .flickity-viewport {
  width: 100%;
}
.newsbox.showcase .newsbox-post .inner {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
}
.newsbox.showcase .newsbox-post-image {
  flex-grow: 1;
  position: relative;
  padding-bottom: 38%;
  margin-bottom: 0;
}
.newsbox.showcase .newsbox-post-image img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}
.newsbox.showcase .newsbox-post-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsbox.showcase .newsbox-post-category {
  display: none;
}
.newsbox.showcase .newsbox-post-info {
  flex-basis: 33.333%;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 20px;
  height: auto;
}

/* Newsbox - Carousel */
.newsbox.news-carousel {
}
.newsbox.ns-carousel .newsbox-content:after {
  content: "";
}
.newsbox.news-carousel .newsbox-content {
  margin: 0;
  background-color: #e30613;
  color: #fff;
}
.newsbox.news-carousel .newsbox-post .inner {
  padding: 20px;
}
.newsbox.news-carousel .newsbox-post-info {
  padding-bottom: 30px;
}

.newsbox.ns-carousel[data-desktop="on"] .newsbox-content:after {
  content: "flickity";
  display: none;
}
.newsbox.ns-carousel[data-desktop="on"] .newsbox-content {
  display: block;
  margin: 0 -10px;
}
.newsbox.ns-carousel[data-desktop="on"] .newsbox-post .inner {
  padding: 0 10px;
}

/* Boxed Layouts for Newsboxes */

.newsbox.box-gray {
  background-color: #f2f2f2;
  padding: 20px;
}
.newsbox.box-red {
  background-color: #e30613;
  color: #fff;
  padding: 20px;
}

/* Wide-bar layout for Newsboxes */
.newsbox.topbar {
  background-color: #333;
  color: #fff;
  font-size: 15px;
  padding: 15px;
}
.newsbox.topbar a,
.newsbox.topbar .newsbox-post:hover .newsbox-post-title {
  color: #fff;
}
.newsbox.topbar .newsbox-title {
  display: none;
}
.newsbox.topbar .title-small {
  font-size: 1.8rem;
  line-height: 1.2;
}
.newsbox.topbar .newsbox-post .newsbox-post-date i {
  display: none;
}
.newsbox.topbar .newsbox-post-info {
  height: auto;
}
.newsbox.topbar .newsbox-post {
  padding: 0 5px;
}

.newsbox.topbar .newsbox-post.exclusive .newsbox-post-title,
.newsbox.topbar .newsbox-post.breaking .newsbox-post-title,
.newsbox.topbar .newsbox-post.original .newsbox-post-title {
  background-color: transparent;
  padding: 0;
  color: #fff;
}
.newsbox.topbar .newsbox-post.exclusive:before,
.newsbox.topbar .newsbox-post.original:before,
.newsbox.topbar .newsbox-post.breaking:after {
  padding: 0 10px;
  top: -15px;
  left: 0;
  right: auto;
}

/* Newsletter form */
.ns-accounts-newsletter input[type="email"] {
  padding: 12px 8px;
}
.ns-accounts-newsletter .main {
  display: flex;
  flex-wrap: nowrap;
}
.ns-accounts-newsletter .btn {
  max-width: 200px;
}

/* NS Slider Shortcode */
.ns-slider-shortcode .ns-slide {
  width: 100%;
  position: relative;
}
.ns-slider-shortcode img.responsive {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Podcast Player */
.podcast-player .podcast-details {
  height: 350px;
  display: flex;
  width: 100%;
  background: #fff;
}
.podcast-player .podcast-details > div {
  flex-basis: 0;
  flex-grow: 1;
  height: 100%;
}
.podcast-player .podcast-details .podcast-info,
.podcast-player .episode-info {
  text-align: center;
  background-color: #f2f2f2;
  padding: 30px;
  height: 100%;
}
.podcast-player .podcast-details .podcast-schedule {
  color: #888888;
}
.podcast-player .podcast-details .podcast-image img {
  height: 20vh;
  width: auto;
}

.podcast-player .podcast-details .podcast-right {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(190, 190, 190, 0.3);
}
.podcast-player .podcast-details .podcast-month {
  width: 100px;
}
.podcast-player .podcast-details .podcast-day {
  width: 90px;
}
.podcast-player .podcast-details .podcast-year {
  width: 90px;
}
.podcast-player .podcast-details .podcast-search {
  flex-basis: auto;
  flex-shrink: 1;
  flex-grow: 0;
  border-bottom: 1px solid rgba(190, 190, 190, 0.3);
  padding: 15px 30px;
}
.podcast-player .podcast-details .podcast-search > * {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
}
.podcast-player .podcast-details .podcast-search select {
  padding: 10px;
}
.podcast-player .podcast-details .podcast-playlist {
  flex-basis: 100%;
  flex-grow: 1;
  overflow-y: scroll;
}
.podcast-player .podcast-details .podcast-episode {
  display: flex;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}
.podcast-player .podcast-details .podcast-episode.playing {
  background-color: #e30613;
  color: #fff;
}
.podcast-player .podcast-details .podcast-episode.hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.podcast-player .podcast-details .podcast-episode:hover {
  background-color: #f2f2f2;
}
.podcast-player .podcast-details .podcast-episode.playing:hover {
  background-color: #e30613;
  color: #fff;
}
.podcast-player .podcast-details .podcast-episode .podcast-title {
  flex-grow: 1;
  margin-right: 10px;
}
.podcast-player .podcast-details .podcast-episode .podcast-title .title {
  font-weight: bold;
}

.podcast-player .episode-info {
  text-align: left;
}
.podcast-player .episode-info .details {
  color: #888;
  margin: 10px 0;
}

.audio-player {
  display: flex;
  align-items: center;
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.audio-player.open {
  height: 150px;
}
.audio-player .waveform {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/waveform-2.gif);
  background-position: center;
  background-repeat-y: no-repeat;
  transition: all 0.2s;
}
.audio-player.playing .waveform {
  opacity: 0.15;
}
.audio-player .audio-play {
  flex-shrink: 0;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  padding-top: 20px;
  padding-left: 20px;
  cursor: pointer;
  background-color: #e30613;
  background-image: url(../svg/play.svg);
  background-position: 20px;
  background-size: 40px;
  background-repeat: no-repeat;
}
.audio-player .audio-play.playing {
  background-image: url(../svg/pause.svg);
}
.audio-player .title-medium {
  font-weight: normal;
}
.audio-player .audio-player-progress {
  height: 3px;
}
.audio-player .audio-info {
  flex-grow: 1;
}
.audio-player .audio-info input[type="range"] {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

body .podcast-player .mejs-container {
  background-color: transparent;
}
body .podcast-player .mejs-controls {
  padding: 0;
}
body .podcast-player .mejs-controls:not([style*="display: none"]) {
  background: transparent;
}
body .podcast-player .mejs-time-total,
body .podcast-player .mejs-horizontal-volume-total {
  background-color: rgba(0, 0, 0, 0.3);
}
body .podcast-player .mejs-button > button {
  filter: invert();
  transition: none;
}
body.dark-mode .podcast-player .mejs-button > button {
  filter: none;
}
body .podcast-player .mejs-button > button:hover {
  background-color: transparent;
}
body .podcast-player .mejs-time {
  color: #333;
}
body .podcast-player .mejs-time-current,
body .podcast-player .mejs-time-handle-content,
body .podcast-player .mejs-horizontal-volume-current {
  background: #e30613;
}

/* Schedule */
.ns-schedule .ns-schedule-show {
  display: flex;
  align-items: center;
  padding: 20px;
}
.ns-schedule .tab-contents {
  padding: 0;
}
.ns-schedule .tab-contents .ns-tab-title {
  display: none;
}
.ns-schedule .ns-schedule-show .ns-schedule-info {
  flex-grow: 1;
  padding-left: 30px;
}
.ns-schedule .ns-schedule-show .ns-schedule-image {
  flex-basis: 80px;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ddd;
}
.ns-schedule .ns-schedule-show .ns-schedule-times {
  font-weight: bold;
  color: #e30613;
}
.ns-schedule .ns-schedule-show.current {
  background-color: #eee;
}
.ns-schedule .ns-schedule-show.current .ns-schedule-times:before {
  content: "ACUM LA RADIO";
  display: inline-block;
  padding: 1px 8px;
  margin-right: 5px;
  color: #fff;
  background-color: #e30613;
}
.ns-schedule .ns-schedule-show .podcast-icon {
  text-align: center;
}
.ns-schedule .ns-schedule-show .podcast-icon i {
  display: block;
  font-size: 35px;
  color: #e30613;
  padding: 10px;
}

/* Podcasts */
.ns-podcasts .newsbox-content {
  max-height: 364px;
  overflow: hidden;
}
.ns-podcasts .newsbox-content:after {
  content: "flickity";
  display: none;
}
.ns-podcasts.ns-carousel .ns-podcast {
  width: 20%;
  text-align: center;
  float: left;
  cursor: pointer;
}
.ns-podcasts .ns-podcast .ns-podcast-title {
  transition: all 0.2s;
}
.ns-podcasts .ns-podcast .podcast-image {
  width: 50%;
  padding-bottom: 50%;
  position: relative;
  margin-left: 25%;
  margin-right: 25%;
  background-color: #ddd;
  border-radius: 50%;
  overflow: hidden;
}
.ns-podcasts .ns-podcast .podcast-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ns-podcasts .ns-podcast.active .ns-podcast-title {
  color: #e30613;
}
.ns-podcasts .flickity-page-dots {
  bottom: 20px;
  z-index: 1;
}
.ns-podcasts .flickity-button {
  z-index: 2;
}
.ns-podcasts .podcast-player {
  max-height: 0;
  transition: all 0.2s;
  overflow: hidden;
}
.ns-podcasts .podcast-player.open {
  max-height: 1200px;
}

.ns-podcasts.grid .newsbox-content {
  display: flex;
  flex-wrap: wrap;
}
.ns-podcasts.grid .ns-podcast {
  width: 20%;
  padding: 10px;
  text-align: center;
}
.ns-podcasts.grid .ns-podcast .podcast-image {
  width: 60%;
  padding-bottom: 60%;
  margin-left: 20%;
  margin-right: 20%;
}

/* nspb Gallery */
.ns-image-gallery {
  width: 100%;
}
.ns-image-gallery .newsbox-post-image img {
  object-position: center;
}

/* nspb Countdown */
.ns-countdown {
  font-size: 40px;
  font-weight: 700;
  display: flex;
}
.ns-countdown .box {
  flex-basis: 0;
  text-align: center;
  flex-grow: 1;
}
.ns-countdown .box .text {
  font-size: 20px;
  font-weight: normal;
}

/* nspb now playing */
.ns-now-playing .song {
  display: flex;
  align-items: center;
}
.ns-now-playing .song .image {
  flex-basis: 100px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 15px;
}
.ns-now-playing .song .song-info {
  flex-grow: 1;
}
.ns-now-playing .song .song-info span {
  display: block;
}

/* nspb image */
.ns-image {
  position: relative;
}
.ns-image img {
  width: 100%;
}
.ns-image.center {
  text-align: center;
}
.ns-image.left {
  text-align: left;
}
.ns-image.right {
  text-align: right;
}
.ns-image.center img,
.ns-image.left img,
.ns-image.right img {
  width: auto;
}

.ns-image .caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 350px;
  text-align: right;
}
.ns-image .caption-toggle {
  background: #e30613;
  color: #fff;
  padding: 10px 12px;
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
}
.ns-image .caption-text {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: #e30613;
  color: #fff;
  padding: 0 20px;
  overflow-y: auto;
}
.ns-image .caption.open .caption-text {
  max-height: 80%;
  padding: 20px;
}

/* NS Modal */
.ns-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 30px;
  background: #fff;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
  max-height: 100vh;
  overflow-y: auto;
}
.ns-modal .close {
  position: absolute;
  top: 0;
  right: 0;
  background: #e30613;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  padding: 4px 15px;
  cursor: pointer;
}

/* NSPB Bulk Votes */
.ns-bulk-vote .options {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.ns-bulk-vote .options > .separator {
  flex-basis: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  margin-top: 30px;
}
.ns-bulk-vote .options > .separator ~ .separator {
  margin-top: 0;
}
.ns-bulk-vote .option .title span {
  display: block;
  font-size: 20px;
}
.ns-bulk-vote .option .title span:first-child {
  font-weight: bold;
  font-size: 30px;
}

.ns-bulk-vote .option.top .title span {
  font-size: 25px;
}
.ns-bulk-vote .option.top .title span:first-child {
  font-size: 35px;
}

.ns-bulk-vote .option.selected {
  border: 2px solid #e30613;
}
.ns-bulk-vote .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.ns-bulkvote-share {
  border: 2px solid #e30613;
  padding: 20px;
  background: #fff;
  color: #333 !important;
}
.ns-bulkvote-share .desc {
  margin-bottom: 20px;
}

#bulkform-notifications {
  margin-top: 20px;
}
#bulkform-notifications > * {
  margin-bottom: 20px;
}

/* Category View */
.section.category-view .container > .column:first-child {
  flex-basis: auto;
  flex-shrink: 1;
  flex-grow: 1;
}
.section.category-view .container > .column:last-child {
  flex-basis: 320px;
  flex-shrink: 0;
  flex-grow: 0;
}
.section.category-view .newsbox-content {
  margin: 0;
}
.section.category-view .newsbox-content .newsbox-post {
  flex-basis: 33.333%;
}
.section.category-view .ns-slider {
  margin: 0 10px;
}

/* NS Accounts */
.ns-accounts .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.ns-accounts .flex > .half {
  flex-basis: 50%;
  padding: 0 15px;
}
.ns-accounts .flex > .full {
  flex-basis: 100%;
  padding: 0 15px;
}

.container.ns-accounts-edit {
  display: block !important;
  max-width: 900px !important;
}

.ns-accounts-login .column:first-child {
  flex-basis: 360px;
  flex-grow: 0;
  display: flex;
  align-items: center;
}
.ns-accounts-login .column:first-child > .inner {
  width: 100%;
  margin: 0;
  height: 100%;
}
.ns-accounts-login .column:last-child {
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 500px;
}
.ns-accounts-login .login {
  background-color: #e30613;
  height: 100%;
  display: flex;
  align-items: center;
  overflow-y: auto;
}
.ns-accounts-login .login > .inner {
  flex-basis: 100%;
  max-width: 350px;
  margin: 0 auto;
}
.ns-accounts-login a {
  text-decoration: underline;
}
.ns-accounts-login .toggle {
  height: 0;
  overflow: hidden;
  padding: 0 30px;
}
.ns-accounts-login .toggle.active {
  height: 100%;
  padding: 30px;
}
.ns-accounts-login .register {
  overflow-y: auto;
}
.ns-accounts-login .ns-register-toggle {
  cursor: pointer;
}
.ns-accounts .ns-accounts-info {
  float: right;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 8px;
  cursor: help;
}

.ns-accounts .login-content {
  background-image: url("../img/placeholders/background-placeholder.png");
  background-position: center;
  background-size: cover;
  position: relative;
}
.ns-accounts .login-content .background-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.ns_accounts_profile {
  text-align: center;
}
.ns_accounts_profile #account-actions {
  display: flex;
}
.ns_accounts_profile #account-actions > div {
  flex-basis: 50%;
}

.ns-accounts-extra .ns-contest-entry {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 15px;
}
.ns-accounts-extra .ns-contest-entry .image {
  flex-basis: 80px;
  margin-right: 15px;
  flex-shrink: 0;
}
.ns-accounts-extra .ns-contest-entry img {
  width: 80px;
  height: 80px;
}

#ns-login-form {
  padding: 30px;
  flex-basis: 100%;
  min-width: 360px;
}
#ns-login-form a {
  color: #fff;
}
#ns-login-form a.btn:hover {
  color: #e30613;
}

/*------------------------------------*\
    NS CONTESTS
\*------------------------------------*/
.ns-quiz {
  overflow: hidden;
  position: relative;
  min-height: 400px;
  margin-bottom: 0;
}
.ns-quiz-questions {
  transition: all 0.3s ease-in-out;
  position: relative;
  left: 0;
  top: 10px;
}
.ns-quiz-questions img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
}
.ns-quiz-questions .answer {
  cursor: pointer;
}
.ns-quiz-questions .answer.selected {
  background-color: #e30613;
  color: #fff;
}
.ns-quiz-questions .answer.selected span {
  color: #fff;
}
.ns-quiz-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.ns-quiz-controls .btn {
  width: 50%;
  float: left;
}
.ns-quiz-controls .btn.active {
  background-color: #fff;
  color: #000;
}
.ns-quiz-message {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 50%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: none;
}
.ns-quiz-message p {
  color: #fff !important;
}
.ns-quiz-message .btn {
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
  background-color: #e30613;
  border: none;
}
.ns-quiz-message h1 {
  margin-top: 0;
  text-align: center;
}
.ns-quiz .question {
  float: left;
  padding: 0 10px;
}
.ns-quiz .question-text {
  font-size: 20px;
  margin-bottom: 20px;
}
.ns-quiz .answer {
  font-size: 23px;
  font-weight: 800;
  color: #e30613;
  margin-bottom: 5px;
  vertical-align: middle;
  padding: 5px 15px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.1s linear;
}
.ns-quiz .answer:hover {
  transform: translate(5px, 0);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.ns-quiz .answer span {
  font-size: 18px;
  color: #000;
  font-weight: normal;
  margin-left: 5px;
}
.ns-quiz-controls .btn {
  background-color: #d1d1d1;
  border: 1px solid #d1d1d1;
  color: #000;
  cursor: pointer;
  transition: all 0.1s linear;
}
.ns-quiz-controls .btn:hover {
  background-color: #fff;
}
.ns-quiz-controls .next {
  text-align: right;
}
.ns-quiz-progress {
  text-align: center;
}
.ns-quiz-progress span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.ns-quiz-progress span.msg {
  background-color: transparent;
}
.ns-quiz .message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  padding: 20px;
  text-align: center;
  z-index: 1;
}
.ns-quiz .end-message-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.ns-quiz .ns-quiz-timer {
  position: relative;
  height: 20px;
  width: 100%;
  border: 1px solid #ccc;
}
.ns-quiz .ns-quiz-timer .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #f00;
}
.ns-quiz .ns-quiz-timer .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  width: auto !important;
}
.ns-quiz .ns-quiz-splash {
  text-align: center;
}
.ns-quiz .ns-quiz-splash .btn {
  margin-top: 50px;
}

/* NS contest share */
.ns-contest-container .social {
  background-color: #fff;
  text-align: center;
  margin-top: 10px;
  padding: 20px;
}
.ns-contest-container .social .message {
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.ns-contest-container .social .btn,
.dark .ns-contest-container .social .btn {
  background-color: #e30613;
  color: #fff;
}
.ns-contest-container .icon {
  background-image: url(img/sprites.png?v=1.21);
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.ns-contest-container .icon.facebook {
  background-position: -37px -76px;
}
.ns-contest-container .icon.twitter {
  background-position: -105px -78px;
}
.ns-contest-container .icon.gplus {
  background-position: -136px -78px;
}
.ns-contest-container .social {
  vertical-align: middle;
  margin-top: 15px;
}
.ns-contest-container .social a.btn {
  padding: 10px 12px;
  vertical-align: middle;
  margin-top: 0;
  margin-right: 5px;
}
.ns-contest-container .social a.btn:hover {
  background-color: #e30613;
  border-color: #e30613;
  color: #fff;
}
.ns-contest-container .social span {
  vertical-align: middle;
}

/* NS Contest Song Hunter */
#ns-contest-songs-notification {
  width: 200px;
  position: fixed;
  top: 80px;
  right: -200px;
  background-color: #fff;
  padding: 10px;
  transition: all 0.2s linear;
  z-index: 100;
}
#ns-contest-songs-notification img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
}
#ns-contest-songs-notification.visible {
  right: 0;
}

/* NS Contest Random */
.ns-contest-random-popup {
  width: 300px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: all 0.2s linear;
  z-index: 10;
  transition-delay: 1s;
  background-color: #fff;
}
.ns-contest-random-popup.top {
  bottom: auto;
  top: 10px;
}
.ns-contest-random-popup.bottom {
  bottom: 10px;
  top: auto;
}
.ns-contest-random-popup.left {
  left: -300px;
  right: auto;
}
.ns-contest-random-popup.right {
  left: auto;
  right: -300px;
}

.ns-contest-random-popup.left.open {
  left: 0;
  right: auto;
}
.ns-contest-random-popup.right.open {
  left: auto;
  right: 0;
}

.ns-contest-random-popup img {
  width: 100%;
  height: auto;
}
.ns-contest-random-popup .close {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #e10909;
  color: #fff;
  text-align: center;
  padding: 5px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.ns-contest-random-popup .close:hover {
  color: #e10909;
  background-color: #fff;
}

/* NS Contest New */
#ns-contest-form {
  background-color: #fff;
  border: 2px solid #e30613;
  padding: 12px 20px 20px 20px;
}
#ns-contest-form .btn,
.dark #ns-contest-form .btn {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #e30613;
  color: #fff;
}
#ns-contest-form label {
  margin-top: 8px;
  font-weight: bold;
  color: #000;
  display: block;
}
#ns-contest-form textarea {
  min-height: 130px;
}
#ns-contest-form .ns-contest-vote-options {
  display: flex;
  flex-wrap: wrap;
}

#ns-contest-form .vote-option {
  padding: 10px;
  display: flex;
  flex-direction: column;
}
#ns-contest-form .vote-option h3 {
  margin: 15px 0;
}
#ns-contest-form .vote-option img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#ns-contest-form .vote-option input {
  content: "VOTEAZĂ";
  width: 100%;
  margin: 15px auto 30px auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: center;
  cursor: pointer;
}
#ns-contest-form .vote-option input:hover,
#ns-contest-form .vote-option.selected input {
  background-color: #e30613;
  color: #fff;
}
#ns-contest-form .vote-option input:after {
  content: "VOTEAZĂ";
}
#ns-contest-form .vote-option .vote-text {
  flex-grow: 1;
}

#ns-contest-form .radio-images label {
  padding: 5px;
}
#ns-contest-form .radio-images label > div.subtitle {
  font-weight: normal;
}
#ns-contest-form .radio-images label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ns-contest-form .radio-images label .title-small {
  font-size: 2rem;
}
#ns-contest-form .radio-images input[type="radio"] {
  position: absolute;
  opacity: 0;
}
#ns-contest-form .radio-images input[type="radio"]:checked + label {
  outline: 5px solid #e30613;
}

.ns-contest-entries .entries {
  margin: 20px -10px;
}
.ns-contest-entries .entries p {
  margin: 20px 0 !important;
}
.ns-contest-entries .efm_loading {
  padding: 10px 0;
}
.ns-contest-entries .entries .entry {
  width: 33.3%;
  float: left;
  padding: 10px;
  cursor: pointer;
}
.ns-contest-entries .entries .entry > div {
  background-color: #fff;
}
.ns-contest-entries .entries .entry .info {
  padding: 20px;
}
.ns-contest-entries .entries .entry img {
  width: 100%;
  height: auto;
  display: block;
}
.ns-contest-entries .entries .entry .judetul-tau {
  font-weight: bold;
  line-height: 160%;
}
.ns-contest-entries .filter {
  display: flex;
}

#ns-contest-entry img {
  width: 100%;
  height: auto;
}
#ns-contest-entry .info {
  padding: 15px 0;
}
#ns-contest-entry .info > div:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}
#ns-contest-entry .social {
}
#ns-contest-entry .social a {
  display: inline-block;
  margin: 0 1px;
}
#ns-contest-entry .social .icon {
  border-radius: 5px;
  background-image: url(img/sprites.png?v=1.21);
  width: 30px;
  height: 30px;
  vertical-align: middle;
  display: inline-block;
}
#ns-contest-entry .social .facebook {
  background-position: -31px -71px;
  background-color: #26519f;
}
#ns-contest-entry .social .twitter {
  background-position: -98px -72px;
  background-color: #20b0d5;
}
#ns-contest-entry .social .gplus {
  background-position: -133px -72px;
  background-color: #f78a09;
}

/*------------------------------------*\
    NS AUDIO POLL (plugin)
\*------------------------------------*/
.ns-audio-poll {
  border: 2px solid #e30613;
  background-color: #fff;
  padding: 20px;
}
.ns-audio-poll .ns-audio-poll-progress-bar {
}
.ns-audio-poll .ns_audio_poll_questions .question {
  display: none;
}
.ns-audio-poll .ns_audio_poll_questions .question.active {
  display: block;
}
.ns-audio-poll .ns_audio_poll_controls {
}
.ns-audio-poll .ns-audio-poll-continue.btn {
  background-color: #ccc;
  display: none;
  margin-top: 15px;
}
.ns-audio-poll .ns-audio-poll-continue.btn.active {
  background-color: #e30613;
  display: inline-block;
}
.ns-audio-poll .ns-audio-poll-continue.btn.active:hover {
  background-color: #fff;
  color: #e30613;
}

.ns-audio-poll .ns_audio_poll_play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
}
.ns-audio-poll .ns_audio_poll_play:after {
  content: " ";
  background-image: url(img/sprites.png?v=1.21);
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: -330px -164px;
}
.ns-audio-poll .ns_audio_poll_player {
  max-height: 0;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.ns-audio-poll .ns_audio_poll_player.active {
  max-height: 200px;
}
.ns-audio-poll .ns_audio_poll_controls a.answer {
  cursor: pointer;
  display: block;
  max-width: 300px;
  background-color: #e30613;
  color: #fff;
  border: 1px solid #e30613;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px !important;
  padding: 15px;
}
.ns-audio-poll .ns_audio_poll_controls a.answer:hover {
  color: #e30613;
  background-color: #fff;
}
.ns-audio-poll .audio-question .text {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 20px;
}
.ns-audio-poll .share-box {
  padding: 20px;
  background-color: #e30613;
  color: #fff;
  font-size: 20px;
}
.ns-audio-poll .share-box .social {
  text-align: center;
}
.ns-audio-poll .share-box .share-text {
  margin-bottom: 10px;
}
.ns-audio-poll .share-box .social a.btn,
.ns-audio-poll .share-box .social a.btn:hover {
  color: #e30613;
  background-color: #fff;
}
.ns-audio-poll input[type="submit"] {
  margin-top: 15px;
}
.ns-audio-poll .notice {
  margin-top: 20px;
}
.ns-audio-poll-progress {
  position: Relative;
  height: 20px;
  background-color: #f1f1f1;
  border: 1px solid #d1d1d1;
  margin-top: 15px;
}
.ns-audio-poll-progress .bar {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  min-width: 2px;
  width: 2px;
}
.ns-audio-poll-progress .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d1d1d1;
  text-transform: uppercase;
  font-size: 13px;
}

/*------------------------------------*\
    Post Gallery
\*------------------------------------*/
.post-gallery {
}

/* Generic popup */
.popup-generic {
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding: 20px 0;
  z-index: 5;
}
.popup-generic .close-window {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 17px;
  cursor: pointer;
  color: #fff;
}

/* NS Embed */
.ns-embed {
  margin-top: -20px;
  text-align: right;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}
.ns-embed .button {
  display: inline-block;
  color: #333;
  font-size: 13px;
  padding: 5px 10px;
  background-color: #d1d1d1;
  cursor: pointer;
}
.ns-embed .content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s linear;
}
.ns-embed.active .content {
  max-height: 45px;
}
.ns-embed span {
  display: inline-block;
  vertical-align: middle;
}
.ns-embed .info {
  opacity: 0;
  max-width: 0;
  height: 17px;
  overflow: hidden;
  transition: all 0.2s;
  margin-left: 0;
}
.ns-embed.active .info {
  opacity: 0.7;
  max-width: 100%;
  margin-left: 10px;
}

/* Podcast episode embed */
.ns-podcast-episode {
  border: 1px solid #d1d1d1;
}
.ns-podcast-episode .ns-embed {
  display: none;
}

/* NS Header */
.ns-header {
  padding: 20px;
  display: flex;
  background-attachment: fixed;
  background-position: top center;
}
.ns-header > div {
  flex-grow: 1;
}
.ns-header .right {
  flex-basis: 300px;
  flex-grow: 0;
  border-left: 1px solid #ccc;
}
.ns-header .right a {
  text-transform: uppercase;
  display: inline-block;
  padding: 2px 10px;
}

/* NS Related */
.ns-related {
  border-top: 2px solid #d1d1d1;
  border-bottom: 2px solid #d1d1d1;
  position: relative;
}
.ns-related .related-title {
  position: absolute;
  top: -15px;
  left: 0;
  background: #fff;
  font-weight: bold;
}
.ns-related .related-post-image img {
  display: none;
  width: 150px;
  height: 150px;
}
.ns-related .related-posts {
  display: flex;
  flex-wrap: wrap;
}
.ns-related .related-posts .post {
  flex-basis: 50%;
  flex-shrink: 0;
  flex-grow: 1;
}
.ns-related .related-post-title a {
  text-decoration: none;
}

/* Notifications icon */
#notifications-icon {
  display: none;
  background-color: #e30613;
  color: #fff;
  padding: 15px 19px;
  font-size: 20px;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  left: 20px;
  z-index: 4;
  cursor: pointer;
}

/* Facebook embed */
.nspb-html .fb-page {
  text-align: center;
}

/* Pulse Animation */
.animation.pulse {
  position: relative;
  z-index: 1;
}
.animation.pulse:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  background-color: #e30613;
  z-index: -1;
  border-radius: 50%;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Scroll Container Shortcode */
.scroll-container.col-1 .scroll-element {
  flex-basis: 100%;
}
.scroll-container.col-2 .scroll-element {
  flex-basis: 50%;
}
.scroll-container.col-3 .scroll-element {
  flex-basis: 33.333%;
}
.scroll-container.col-4 .scroll-element {
  flex-basis: 25%;
}
.ns-scroll-link {
  flex-basis: 0 !important;
  flex-grow: 0;
  flex-shrink: 1;
  overflow: hidden;
}

/* Dark Mode */

body.dark-mode {
  background-color: #000;
  color: #fff;
}
body.dark-mode input[type="text"],
body.dark-mode input[type="checkbox"],
body.dark-mode input[type="password"],
body.dark-mode input[type="number"],
body.dark-mode select,
body.dark-mode textarea {
  background-color: #262626;
  color: #fff;
}

body.dark-mode #footer {
  background-color: #262626;
}

body.dark-mode .single-post .post-info > .social {
  color: #888;
}
body.dark-mode .ns-tabs .tab-contents {
  border-color: rgba(190, 190, 190, 0.3);
}
body.dark-mode .newsbox.ns-slider .newsbox-post .inner {
  background-color: #262626;
}
body.dark-mode #player-bar-ad {
  background-color: #262626;
}

body.dark-mode #main-menu-list {
  background-color: #313131;
}
body.dark-mode #main-menu-submenu {
  background-color: #444;
}
body.dark-mode #main-menu-details {
  background-color: rgba(0, 0, 0, 0.9);
}
body.dark-mode #main-menu-list li:hover,
#main-menu-list li.extended {
  color: #000;
}
body.dark-mode #main-menu-submenu ul li:hover > a {
  color: #000;
}

body.dark-mode .podcast-player .podcast-details,
body.dark-mode .podcast-player .podcast-details .podcast-info,
body.dark-mode .podcast-player .episode-info,
body.dark-mode .podcast-player .podcast-details .podcast-episode:hover,
body.dark-mode .ns-schedule .ns-schedule-show.current,
body.dark-mode .newsbox.showcase .newsbox-post .inner,
body.dark-mode .mkt-area.background {
  background-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode body .podcast-player .mejs-button > button {
  filter: none;
}
body.dark-mode .podcast-player .mejs-time-total,
body.dark-mode .podcast-player .mejs-horizontal-volume-total {
  background-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .chip {
  background-color: #656464;
}

body.dark-mode .newsbox .newsbox-post:hover .newsbox-post-title {
  color: #fff;
}

body.dark-mode #ns-contest-form {
  background-color: #262626;
}

.scroll-icon {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 150px;
  height: 150px;
  background-image: url(../svg/scroll-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 4;
  transition: all 0.2s;
  opacity: 1;
  animation: down 1s infinite;
}
.scroll-icon.right {
  left: auto;
  right: 10px;
  transform: translate(0, 0);
}
.scrolled .scroll-icon {
  bottom: -200px;
  opacity: 0;
  animation: none;
}

@keyframes down {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: 40px;
    opacity: 0.3;
  }
}

@media only screen and (max-width: 1300px) {
  #main-menu-details .newsbox-content .newsbox-post {
    flex-basis: 50% !important;
  }
  #footer-menus {
    margin-left: 20px;
    margin-right: 20px;
  }
  .section > .container {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
  .section.single-post > .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .section.category-view .newsbox-content .newsbox-post.mkt-post {
    flex-basis: 100%;
  }
  /* Wide-bar layout for Newsboxes */
  .newsbox.topbar {
    margin: 0 -20px;
  }
  .newsbox.topbar .flickity-page-dots {
    bottom: -50px;
  }
}

@media only screen and (max-width: 1000px) {
  .section.single-post > .container {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 900px) {
  /* Page Template - Single Article */
  .single-post .post-body {
    padding-right: 0;
  }
  .single-post .post-sidebar {
    position: static;
    width: auto;
  }
  .single-post .post-sidebar > .inner {
    margin: 0;
    padding: 20px 0;
  }
  .single-post .post-info {
    font-size: 15px;
    font-weight: 200;
  }
  .single-post .post-info > .social > * {
    padding-left: 10px;
  }
  .single-post .post-info > .social .share-text {
    display: none;
  }

  /* Tabs */
  .ns-tabs .tab-titles {
    display: flex;
    flex-wrap: wrap;
  }
  .ns-tabs .tab-titles > div {
    display: block;
    flex-grow: 1;
    text-align: center;
  }

  /* Newsbox */
  .newsbox .newsbox-content {
    display: block;
  }
  .newsbox .newsbox-content .newsbox-post {
    margin-bottom: 30px;
    width: 100% !important;
  }
  .newsbox-post .newsbox-post-category {
    margin-top: 10px;
  }

  .newsbox .newsbox-content {
    display: block;
  }
  .newsbox .newsbox-post .newsbox-post-info {
    height: auto;
  }
  .newsbox .newsbox-post .newsbox-post-title {
    display: block;
  }
  .newsbox .newsbox-post .newsbox-post-excerpt {
    display: block;
  }
  .newsbox .newsbox-post.mkt .mkt-area {
    height: 100%;
  }
  .newsbox.fade .newsbox-post-info:after {
    display: none !important;
  }

  /* Newsbox - Carousel */
  .newsbox.ns-carousel .newsbox-content:after {
    content: "flickity";
    display: none;
  }
  .newsbox.ns-carousel .newsbox-post-info {
    height: auto;
  }
  .newsbox.ns-carousel .newsbox-content {
    margin: 0 0 40px 0;
  }
  .newsbox.ns-carousel .newsbox-content .newsbox-post {
    width: 90%;
    margin-right: 10px;
    margin-bottom: 0;
    opacity: 0.8;
    transition: all 0.2s;
  }
  .newsbox.ns-carousel .newsbox-content .newsbox-post.is-selected {
    opacity: 1;
  }

  /* Newsbox - Slider */
  .newsbox.ns-slider {
    margin-bottom: 30px;
  }
  .newsbox.ns-slider .inner {
    flex-wrap: wrap;
  }
  .newsbox.ns-slider .newsbox-post-image {
    flex-basis: 100%;
    padding-bottom: 57%;
  }
  .newsbox.ns-slider .newsbox-post-info {
    flex-basis: 100%;
  }
  .newsbox.ns-slider .flickity-button {
    display: none;
  }
  .newsbox.ns-slider .newsbox-content .newsbox-post {
    margin-bottom: 0;
  }
  .newsbox.ns-slider.mobile-carousel {
    margin-bottom: 0;
  }
  .newsbox.ns-slider.mobile-carousel .flickity-page-dots {
    bottom: 25px;
  }

  /* Newsbox - Showcase */
  .newsbox.showcase {
    margin-bottom: 30px;
  }
  .newsbox.showcase .inner {
    flex-wrap: wrap;
  }
  .newsbox.showcase .newsbox-post-image {
    flex-basis: 100%;
    padding-bottom: 57%;
  }
  .newsbox.showcase .newsbox-post-info {
    flex-basis: 100%;
  }
  .newsbox.showcase .flickity-button {
    display: none;
  }
  .newsbox.showcase .newsbox-content .newsbox-post {
    margin-bottom: 30px;
  }

  /* Newsbox - Latest */
  .newsbox.latest .newsbox-content .newsbox-post {
    margin-bottom: 0;
  }

  /* Newsbox - TopBar */
  .newsbox.topbar .flickity-page-dots {
    display: none;
  }
  .newsbox.topbar.ns-carousel .newsbox-content {
    margin-bottom: 0;
  }

  /* NS Contest - Votes */
  #ns-contest-form .vote-option {
    width: 100% !important;
  }

  /* NS Bulk Votes */
  .ns-bulk-vote .options {
    display: block;
  }

  /* Main Menu */
  #main-menu {
    margin-top: 50px;
  }
  .scroll-down #main-menu {
    margin-top: 100px;
  }
  #main-menu > .inner {
    padding-bottom: 50px;
  }
  .scroll-down #main-menu > .inner {
    padding-bottom: 100px;
  }
  #main-menu-list {
    width: 70vw;
  }
  #main-menu-list > ul > li.menu-item-has-children {
    position: relative;
    padding-right: 48px;
  }
  #main-menu-list > ul > li.menu-item-has-children .open-submenu {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    padding-top: 13px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.05);
  }
  #main-menu-submenu {
    position: absolute;
    left: auto;
    right: 30vw;
    height: 100%;
  }
  #main-menu-submenu ul {
    padding: 0;
  }
  #main-menu.submenu-opened #main-menu-list > ul {
    opacity: 0.5;
    cursor: auto;
  }
  #main-menu.submenu-opened #main-menu-submenu {
    width: 70vw;
  }
  #main-menu .close-submenu {
    padding: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 2rem;
  }
  #main-menu .close-submenu .fa {
    font-size: 16px;
  }
  #main-menu-details > * {
    display: none;
  }
  #main-menu-submenu ul li a {
    font-size: 2.3rem;
    padding: 13px 30px;
  }
  #main-menu-submenu ul li .sub-menu a {
    font-size: 2rem;
  }

  /* NS Accounts */
  #ns-login-form {
    min-width: 0;
  }

  /* Podcast player */
  .podcast-player .podcast-details {
    padding-right: 0;
    display: block;
    height: auto;
  }
  .podcast-player .podcast-details .podcast-playlist {
    position: static;
    height: 60vh;
    width: auto;
  }
  .podcast-player .podcast-details .podcast-search {
    padding: 15px;
  }
  .podcast-player .podcast-details .podcast-right {
    display: block;
  }
  .audio-player .audio-play {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-size: 30px;
    background-position: 10px;
    margin-right: 10px;
    margin-left: 0;
  }
  .audio-player .title-medium {
    font-size: 2rem;
  }
  .podcast-player .episode-info {
    min-height: 0;
  }
  .ns-podcasts .ns-podcast,
  .ns-podcasts.ns-carousel .ns-podcast {
    width: 50%;
  }
  .ns-podcasts .flickity-button {
    display: none;
  }
  .ns-podcasts .ns-podcast .podcast-image {
    width: 80%;
    padding-bottom: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .ns-podcasts.grid .ns-podcast {
    width: 50%;
    padding: 10px;
  }
  .ns-podcasts.grid .ns-podcast .podcast-image {
    width: 90%;
    padding-bottom: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }

  /* Ns contest quiz */
  #ns-contest-form {
    padding: 12px 10px 10px 10px;
  }
  .ns-quiz .ns-quiz-timer .text {
    font-size: 10px;
  }
  .ns-quiz .message {
    min-width: 80%;
  }
}

@media only screen and (min-width: 901px) {
  .newsbox.news-slider.forced .newsbox-content.tns-slider {
    display: flex;
    transform: none !important;
    width: auto !important;
  }
  .newsbox.news-slider.forced .newsbox-content .newsbox-post {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .newsbox.news-slider.forced .newsbox-content .newsbox-post.tns-slide-cloned {
    display: none;
  }
}
