/*
 Theme Name:  Document
 Version:     1.2.4
 Description: Theme for Document News
 Author:      Document Media AS
 Author URI:  https://www.document.news
*/

@font-face {
  font-family: 'League Spartan Bold';
  font-style: normal;
  font-weight: 700;
  src:
    url('fonts/leaguespartan-bold.woff2') format('woff2'),
    url('fonts/leaguespartan-bold.woff') format('woff');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  src:
    url('fonts/libre-baskerville-v4-latin_latin-ext-regular.woff2') format('woff2'),
    url('fonts/libre-baskerville-v4-latin_latin-ext-regular.woff') format('woff');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  src:
    url('fonts/libre-baskerville-v4-latin_latin-ext-italic.woff2') format('woff2'),
    url('fonts/libre-baskerville-v4-latin_latin-ext-italic.woff') format('woff');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  src:
    url('fonts/libre-baskerville-v4-latin_latin-ext-700.woff2') format('woff2'),
    url('fonts/libre-baskerville-v4-latin_latin-ext-700.woff') format('woff');
}

:root {
  --document-red: #cd0000;
  --document-red-hover: #f11b1b;
  --document-blue: #191970;
  --document-factbox-bg: #edf3fb;
  --document-factbox-border: #dae4f1;
  --document-light-blue-bg: #d3e2f9;
  --document-light-blue-border: #b8c9e4;
  --document-light-yellow-bg: #ffe883;
  --document-light-yellow-border: #ffde49;
  --document-link: #1955a5;
  --document-link-hover: #2675dd;
  --document-serif: 'Libre Baskerville', 'Georgia', serif;
  --document-sans-serif: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --document-sans-serif-custom: 'League Spartan Bold', 'Helvetica', sans-serif;
}

body {
  background-color: #ffffff;
  font-size: 15px;
  font-family: var(--document-serif);
  font-weight: 500;
  height: 100%;
  line-height: 1.6 !important;
  word-wrap: break-word;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  font-weight: 700;
  color: #1955a5;
}
a:hover {
  text-decoration: none;
}

article iframe:not(.wp-embedded-content) {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

article iframe.wp-embedded-content {
  width: 100%;
}

/* Contact Us page */

h4.sidebar-heading {
  font-family: var(--document-sans-serif-custom);
  font-weight: 700;
  font-size: 18px;
}

/* Hide reCAPTCHA badge. */

.grecaptcha-badge {
  display: none;
}

/* reCAPTCHA disclaimer */

.form-recaptcha-disclaimer {
  font-family: var(--document-sans-serif);
  font-size: 10px;
  color: #708090;
}

.form-recaptcha-disclaimer a {
  color: #708090;
}

.form-recaptcha-disclaimer a:hover {
  color: #46505a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: normal;
}

/* Video feed */

.video-grid-wrapper {
  margin: 0 0 30px 0;
  background: #eff8ff;
  padding: 24px;
  border-radius: 10px;
}

.video-grid-wrapper h2 {
  font-family: var(--document-sans-serif-custom);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin: 0 0 14px 0;
  color: var(--document-blue);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.video-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(12, 37, 72, 0.246);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-item a {
  text-decoration: none;
  color: inherit;
}

.video-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.video-item h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--document-sans-serif-custom);
  margin: 16px 16px 8px;
  line-height: 1.4;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-item p {
  font-size: 15px;
  font-weight: 400;
  margin: 0 16px 12px;
  line-height: 1.5;
  font-family: var(--document-sans-serif);
}

.video-item time {
  display: block;
  font-size: 12px;
  color: #5a5a5a;
  margin: 0 16px 16px;
  font-weight: 200;
  font-family: var(--document-sans-serif);
}

.channel-link {
  text-align: right;
  font-family: var(--document-sans-serif-custom);
  margin: 32px 0 0 0;
  padding-right: 24px;
  font-size: 18px;
}

.channel-link a {
  color: var(--document-blue);
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-item:nth-child(n + 4) {
    display: none;
  }
}

.social-follow-wrapper {
  margin: 0 0 3.2rem 0;
  border-radius: 8px;
  padding: 1rem 2.4rem 3rem;
  text-align: center;
  box-shadow: 1px 2px 6px #afafaf;
}

.social-icons-grid {
  display: flex;
  justify-content: space-around;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin: 3rem auto 0;
}

.social-icon {
  width: 56px;
  height: 56px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

@media (max-width: 600px) {
  .video-grid-wrapper {
    padding: 25px 16px 22px 16px;
  }

  .channel-link {
    text-align: center;
    padding-right: 0;
  }

  .social-follow-wrapper h2 {
    font-size: 24px;
  }

  .social-icons-grid {
    justify-content: center;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}

/* Ads */

.desktop-ad-sec-row {
  border: 0px;
  margin-left: auto;
  margin-right: auto;
  width: 1050px;
}

/* Info box (e.g. debate guidelines) */

.alert-info a {
  color: #31708f;
  font-weight: 400;
  text-decoration: underline;
}

.alert-info a:hover {
  color: #31708f;
  font-weight: 400;
  text-decoration: none;
}

/* Search results */

.searchform {
  margin: 15px 0px 15px 0px;
}

.search-image {
  float: left;
  margin: 15px 15px 0px 0px;
  height: auto;
  width: 150px;
}

.search-text {
  overflow: hidden;
  font-size: 14px;
}

/* Featured image */

img.featured-image {
  margin-top: 20px;
  width: 100%;
  height: auto;
}

/* Caption text */

.wp-caption-text {
  font-family: var(--document-sans-serif);
  font-style: italic;
}

/* User menu and search bar in header*/

.user-menu,
.search-bar {
  margin: 15px 0px 15px 0px;
  float: right;
}

.search-bar {
  width: 150px;
  margin-right: 15px;
}

.user-menu ul {
  list-style-type: none;
  overflow: hidden;
  padding: 0px;
}

.user-menu li {
  background-color: var(--document-red);
  float: left;
  font-family: var(--document-sans-serif-custom);
  font-size: 14px;
  border-radius: 6px;
  margin-right: 10px;
  padding: 7px 22px 4px 22px;
  text-align: center;
  transition: 0.2s;
}

.user-menu li:hover {
  background-color: var(--document-red-hover);
}

.user-menu li a,
.user-menu li a:hover {
  color: #fffff8;
}

/* Drop-down feature in main menu */

.nav-item .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}
.dropdown-menu > li:hover > .submenu {
  display: block;
}

/* Article */

article {
  border-bottom: 6px solid rgba(0, 0, 0, 0.05);
}

article a,
.page-content a {
  color: #1955a5;
  text-decoration: none !important;
  border-bottom: 1px solid #d4d4d4 !important;
}
article a:hover,
.page-content a:hover {
  color: #1955a5;
  border-bottom: none !important;
}
article blockquote {
  font-size: 16px;
}
article ul li,
article ol li {
  margin-bottom: 2%;
}
article .lead {
  /* ingress */
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}
article h3 {
  /* mellomtittel */
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
}
article .alignright,
article .alignleft,
article .alignright img,
article .alignleft img {
  width: 100% !important;
}
article div.fact-box,
article section.fact-box,
article section.author-fact-box {
  background: var(--document-factbox-bg);
  border: 2px solid var(--document-factbox-border);
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  padding: 16px 26px;
  margin-bottom: 2rem;
  font-family: var(--document-sans-serif);
}
article section.author-fact-box {
  background: var(--document-author-factbox-bg);
  border: 1px solid var(--document-author-factbox-border);
  padding-bottom: 6px;
}
article div.fact-box > h1,
article div.fact-box > h2,
article div.fact-box > h3,
article section.fact-box > h1,
article section.fact-box > h2,
article section.fact-box > h3 {
  margin-top: 0;
  font-size: 20px;
}

.widget_recent_entries ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_recent_comments ul,
.widget_nav_menu ul,
.widget_links ul {
  margin: 0;
  padding: 0;
  font-size: 0.857em;
}
.widget_recent_entries ul li:before,
.widget_pages ul li:before,
.widget_categories ul li:before,
.widget_archive ul li:before,
.widget_recent_comments ul li:before,
.widget_nav_menu ul li:before,
.widget_links ul li:before {
  font-family: 'FontAwesome';
  margin-right: 0.53em;
  display: inline-block;
  opacity: 0.35;
}
.widget_categories ul li:before,
.widget_archive ul li:before,
.widget_recent_entries ul li:before,
.widget_pages ul li:before {
  content: '\f0f6';
}
.widget_recent_comments ul li:before {
  content: '\f0e5';
}
.widget_nav_menu ul li:before,
.widget_links ul li:before {
  content: '\f0c1';
}
.widget ul {
  margin-left: 0;
  list-style: none;
}
.footer {
  background-color: #ffffff;
  padding: 1.618em 0;
  border-top: 1px #e4e4e4 solid;
  margin-top: 20px;
}
.navbar-default .navbar-nav > li > a {
  font-size: 14px;
  padding: 10px 10px;
}
nav.pagination {
  position: relative;
  display: block;
  float: right;
}
.nav-links {
  position: relative;
  font-size: 15px;
}
.nav-links ul {
  margin: 0;
  padding: 0;
}
.nav-links ul li {
  list-style: none;
  margin: 0 10px 0 0;
  padding: 0;
  float: left;
}
.nav-links ul li span.current {
  padding: 10px 12px;
  background: #777;
  border: 1px solid #777;
  display: block;
  line-height: 1;
  border-radius: 4px;
  color: #fff;
}
.nav-links ul li a {
  padding: 10px 12px;
  background: #ddd;
  color: #666;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: block;
  line-height: 1;
}
.nav-links ul li a:hover {
  background: #999;
  border-color: #888;
  color: #fff;
}
.page-header {
  padding-bottom: 0px;
  margin-top: 0;
}

.navbar-brand {
  padding: 0;
}
@media (max-width: 1199px) {
  .navbar-brand {
    padding-top: 10px;
  }
  .navbar-brand img {
    width: 180px;
    height: 30px;
  }
}
@media (min-width: 1200px) {
  .navbar-brand {
    padding-top: 20px;
  }
  .navbar-brand img {
    width: 300px;
  }
}
.post_box {
  padding-bottom: 20px;
}
.post_image {
  padding-bottom: 10px;
}
.post_title {
  margin-bottom: 12px;
}
.post_title a {
  color: #000;
  font-size: 22px !important;
  line-height: 27px;
  font-weight: 400;
}
.post_author {
  padding-bottom: 10px;
}
.post_text {
  text-align: left;
}
.wp-caption,
.wp-caption img,
.navbar-collapse {
  margin-top: 20px;
}
.navbar-default .navbar-nav > li > a {
  padding: 7px 7px;
}
.list-unstyled .menu-item {
  font-size: 14px;
}
@media (min-width: 768px) {
  .navbar-nav > li {
    display: inline-block;
    float: none;
  }
  .navbar-nav {
    text-align: right;
  }
  .navbar-collapse {
    padding-right: 0 !important;
  }
}
.post_text img {
  width: 100%;
  height: auto;
}
.wpp-post-title {
  font-weight: normal;
}
.wpp-list {
  padding: 0;
}
.artcle-top-img img {
  width: 100%;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
@media (min-width: 992px) {
  .article-cond-padding {
    padding-left: 40px;
  }
}
a {
  color: #333;
}
p {
  margin: 0 0 20px;
}
article a {
  color: #1955a5;
  text-decoration: none;
  font-weight: normal;
  border-bottom: 1px solid #d4d4d4;
}
article a:hover {
  color: #1955a5;
}
article {
  border: none;
  font-size: 17px;
}
a:hover {
  text-decoration: none;
  border: none;
  color: #000;
}
.page-header > h2 {
  font-size: 40px;
  font-family: var(--document-serif);
  line-height: 52px;
}
@media (min-width: 767px) {
  .right-nopadding {
    padding-right: 0;
  }
  .extra-padding-right {
    padding-right: 50px;
    border-right: 1px solid #d4d4d4;
  }
  .extra-padding-left {
    padding-left: 50px !important;
  }
  .extra-padding-left {
    padding-left: 50px;
  }
}

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}
.header-icons {
  font-size: 17px;
  color: #666;
}
.kategori-font {
  font-family: var(--document-sans-serif-custom);
  margin: 5px 0 20px 0;
}
.kategori-titler a {
  font-weight: normal;
}
.kategori-line {
  width: 70px;
  border-top: 4px solid #333;
  margin: 10px 0 5px 0;
}
.most-read {
  border-left: 1px solid #d4d4d4;
  padding: 0 0 0 27px;
  margin-top: 0;
}
.most-read-image {
  overflow: hidden;
  float: left;
  width: 100px;
  height: 80px;
  margin-right: 5px;
}
.most-read > h4,
.cat-front-title > h4 {
  margin-top: 0;
  font-family: var(--document-sans-serif-custom);
}
.image-caption-text {
  font-size: 14px;
  font-style: italic;
  color: #555;
  margin: 0 0 30px 0;
}
.logo-image {
  width: 600px;
}
.boxed-headline {
  background-color: #ededed;
  padding-bottom: 4px;
  margin: 0 0 19px 0;
  border: 1px solid #bbb;
}
.boxed-headline > a {
  color: #333;
}
.bigger_headline .post_title a {
  font-size: 30px !important;
  line-height: 1.3;
}
.post_image {
  overflow: hidden;
  padding-bottom: 57%;
  position: relative;
}
.oyeblikket_image {
  padding-bottom: 37% !important;
}
.post_image img {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.wp-caption,
.wp-caption img,
article img {
  height: auto;
  max-width: 100%;
  /* width: 100%; */
}
.quote-separator {
  border-bottom: none;
  margin: 20px 0 0 0;
}
.post_box {
  padding-bottom: 24px;
}
.textwidget a {
  color: #fff;
  font-weight: normal;
}
.artblock {
  background-color: #eee !important;
  margin: 20px 0 30px 0 !important;
}
.byline-lead-kill {
  font-family: var(--document-sans-serif-custom);
  text-transform: normal;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.byline-lead {
  text-transform: normal;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.byline {
  font-size: 13px;
  font-family: var(--document-sans-serif-custom);
  letter-spacing: 0.3px;
}
.byline-date {
  color: #999;
  font-size: 14px;
  letter-spacing: 0.3px;
  font-style: italic;
}
.byline > a {
  color: inherit;
  font-weight: normal;
}
.pagination {
  font-family: var(--document-sans-serif);
  font-weight: normal;
}
.cat-bg-style {
  background-color: black !important;
}
.cat-text-style {
  color: white !important;
}
.section.catname.center-post {
  margin: 30px auto 15px;
  width: 50%;
}
.section.catname {
  border-top: 1px solid #ccc;
  padding: 0 0 10px;
  position: relative;
  text-align: center;
  margin: 30px 0 5px 0;
}
.section.catname.single-post {
  margin: 40px auto 35px;
  border: none;
  padding: 0;
}
.innertitle > a {
  color: #bf0005;
  font-family: var(--document-sans-serif-custom);
}
.innertitle-main > a {
  color: #222 !important;
}
.innertitle-singlepost {
  font-size: 13px;
}
.category-name {
  font-size: 18px;
}
.category-name > a {
  color: #333 !important;
}
.wpp-thumbnail {
  margin: 0 15px 0 0 !important;
}
.wpp-list {
  padding-left: 0;
}
.wpp-post-title {
  line-height: 20px;
  font-size: 15px;
  font-weight: 700;
}
.badge {
  font-family: var(--document-sans-serif);
  font-weight: normal;
}
.section-author {
  color: #bf0005;
  margin: 0 0 12px 0 !important;
}
.section-cattitle-centered,
.section-cattitle-centered a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bf0005;
  font-family: var(--document-sans-serif-custom);
  font-size: 13px;
}
.section.catname .section-cattitle {
  left: 0;
  position: absolute;
  top: -27px;
}
.title-boxed,
.section.catname .section-cattitle,
.section-cattitle,
.section-author {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.title-boxed .innertitle,
.term-title .innertitle,
.hero .term .innertitle,
.section.catname .section-cattitle .innertitle,
.section-cattitle .innertitle {
  border-color: #999 #999 #fff;
  border-width: 1px;
  color: #bf0005;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 8px 10px 6px 0;
  opacity: 1;
}
.article-title-border {
  border-top: solid 1px #d4d4d4;
  margin: 10px 0 20px 0;
}
.toppmeny {
  text-transform: normal;
  font-size: 13px;
  margin: 1px 0 0 0;
}
.toppmeny > a {
  color: #999;
  font-weight: normal;
}
.navbar {
  min-height: 10px;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.navbar-toggle {
  background-color: transparent;
  background-image: none;
  border-radius: 4px;
  float: none;
  margin-bottom: 1px;
  margin-right: 15px;
  margin-top: 8px;
  padding: 9px 10px 3px 10px;
  position: relative;
}
.page-header {
  border: none;
}
.navbar-nav {
  text-align: center;
}
.navbar .navbar-nav {
  display: inline-block;
  float: none;
}
.navbar .navbar-collapse {
  text-align: center;
}
.nav.navbar-nav a {
  color: #111 !important;
  font-weight: normal;
}
.navbar-default .navbar-nav > li > a {
  font-size: 14px;
}
.navbar-collapse {
  margin-top: 0;
}
.dropcap {
  float: left;
  font-size: 87px;
  line-height: 66px;
  padding-top: 10px;
  padding-right: 5px;
  color: #bf0005;
  margin-left: -4px;
}
.video-teaser-heading {
  font-size: 17px;
  color: #333;
}
.video-teaser-heading a {
  color: inherit;
  font-weight: normal;
}
.teaser-border {
  border-top: 1px solid #d4d4d4;
  margin-bottom: 6px;
}
.nav.nav-tabs {
  font-family: var(--document-sans-serif-custom);
}
.nav.active > a {
  color: #bf0005 !important;
  outline: 0;
}
.nav > a {
  color: #333;
}
.tab-content {
  margin-top: 30px;
}
.nav-tabs {
  border-bottom: 1px solid #999;
}
.nav-tabs > li > a {
  border-radius: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: #fff;
  border-color: #999 #999 transparent;
  border-image: none;
  border-style: solid;
  border-width: 1px;
  color: #333;
  cursor: default;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: none !important;
}
.nav-tabs > li > a:hover {
  border-color: #999 #999 #999;
}
.media-heading a {
  color: inherit;
}
.media {
  margin-top: 0;
  margin-bottom: 15px;
}
.media.front_post_media {
  border-top: 1px solid #d4d4d4;
  padding-bottom: 5px;
  padding-top: 25px;
}
.media-left,
.media > .pull-left {
  padding-right: 25px;
  margin-bottom: 10px;
}
.social-box {
  border-top: 2px solid #333;
}
.social-icons {
  margin-top: 10px;
}
.social-icons > a:hover {
  background-color: #000;
}
.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #444;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}
.padding-right-10 {
  padding-right: 10px;
}
.padding-right-15 {
  padding-right: 15px;
}
.padding-right-20 {
  padding-right: 20px;
}
.padding-right-25 {
  padding-right: 25px;
}
.padding-left-10 {
  padding-left: 10px;
}
.padding-left-15 {
  padding-left: 15px;
}
.padding-left-20 {
  padding-left: 20px;
}
.padding-left-25 {
  padding-left: 25px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-right-15 {
  margin-right: 15px;
}
.margin-right-20 {
  margin-right: 20px;
}
.margin-right-25 {
  margin-right: 25px;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-left-15 {
  margin-left: 15px;
}
.margin-left-20 {
  margin-left: 20px;
}
.margin-left-25 {
  margin-left: 25px;
}
.footer {
  color: #333;
  border-top: none;
  margin-top: 0;
  padding: 1.618em 0;
  position: relative;
  z-index: 10;
}
.footer-links > a {
  font-weight: normal;
}
.footer-center i {
  background-color: #33383b;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
  color: #fff;
}
.footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}
.footer-center i.fa-credit-card {
  font-size: 17px;
  line-height: 38px;
}
.footer-center p {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-family: var(--document-sans-serif-custom);
}
.footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
.footer-center p a {
  text-decoration: none;
}
.footer-icons {
  margin-top: 10px;
}
.footer-icons > h4 {
  font-family: var(--document-sans-serif-custom);
  font-size: 15px;
}
.footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}
.has-pullquote:before {
  padding: 20px 0;
  border-top: 3px solid;
  border-bottom: 3px solid;
  content: attr(data-pullquote);
  float: right;
  width: 320px;
  margin: 12px -50px 24px 36px;
  position: relative;
  top: 5px;
  font-size: 20px;
  line-height: 30px;
}
.pullquote-left:before {
  float: left;
  margin: 12px 51px 24px 0;
  width: 251px;
}
.pullquote-league:before {
  font-family: var(--document-sans-serif-custom);
  font-weight: 100;
  top: 10px !important;
  color: #bf0005;
}
.pullquote-libre:before {
  font-family: var(--document-serif);
  font-weight: normal;
  color: #bf0005;
  top: 10px !important;
  font-style: italic;
}
a:focus {
  outline: medium none;
  text-decoration: none;
}
.panel-heading .accordion-toggle::after {
  font-family: 'Glyphicons Halflings';
  content: '\e114';
  float: right;
  color: #bf0005;
  opacity: 0.8;
}
.panel-heading .accordion-toggle.collapsed::after {
  content: '\e080';
}
.tips-wrapper {
  height: 650px;
  /* overflow-y: scroll; */
}
.kort-kommentarer {
  font-size: 12px;
  padding-top: 10px;
}
.kort-kommentarer a {
  color: #777;
  font-weight: normal;
}
.kort-kommentarer a:hover {
  color: #333;
}
.kort > a {
  color: #bf0005;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.kort-title {
  line-height: 21px;
}
.kort-title a {
  outline: 0;
  text-decoration: none;
  font-family: var(--document-sans-serif-custom);
}
.kort-text {
  font-size: 14px;
  padding: 1px 15px 15px 0;
}
.panel-body.kort-text > a:after {
  content: '\f08e';
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
  padding-left: 3px;
}
.panel-heading {
  padding: 15px 15px 15px 0;
}
.panel-default > .panel-heading {
  background-color: #fff !important;
  border: none;
}
.panel-default {
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
}
.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border: none;
}
.panel-group {
  padding-bottom: 20px;
  margin-bottom: 0;
}
.kort-border-divider {
  border-bottom: 1px solid #d4d4d4;
  margin: 0 15px 0 0;
}
.adseparator {
  margin: 10px 0px 10px 0px;
}
.video-img-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.video-img-container:hover img {
  opacity: 0.8;
}
.video-img-container a {
  opacity: 0.8;
  top: 0;
  z-index: 500;
}
.video-img-container:hover a {
  opacity: 0.9;
}
.video-img-container a span {
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.video-img-container a {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: white;
}
.category-title-page {
  font-family: var(--document-sans-serif-custom);
}
.bottom-row-titles {
  border-bottom: 1px solid #e4e4e4;
  padding: 15px 0;
}
.bottom-row-category > a {
  font-family: var(--document-sans-serif-custom);
  font-size: 14px;
  padding: 0 20px 10px 0;
  text-transform: uppercase;
}
.bottom-row-list {
  padding: 0 15px;
  list-style: none;
  font-size: 14px;
  font-family: var(--document-sans-serif-custom);
  line-height: 18px;
}
.breakingnews-container {
  background-color: #000;
  display: flex;
  align-items: center;
  flex-direction: row;
  font-family: var(--document-sans-serif);
  text-align: left;
  border: 2px solid #000;  border-radius: 4px;
  padding: 10px 26px 10px 14px;
  margin: 2rem 0 1.4rem;
}
.breakingnews-container h3.breakingnews-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  margin: unset;
  color: #fff;
  top: 3px;
  margin-left: 14px;
}
.breakingnews-container h3.breakingnews-title span {
  color: #ff1b1b;
}
.tickernews-container {
  background-color: #cf102d;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  font-size: 20px;
  font-family: var(--document-sans-serif-custom);
  line-height: 24px;
  text-align: left;
}
.tickernews-cat-title {
  background-color: #fece00;
  padding-right: 5 px;
}
.tickernews-title {
  color: #232300;
  font-family: var(--document-sans-serif-custom);
  font-size: 30px;
  letter-spacing: 1.2px;
}
.ticker {
  margin: 16px 0 0 0;
  text-align: left;
}
#ticker-bullhorn {
  float: left;
  color: #000;
  margin-top: 15px;
  font-size: 27px;
  line-height: 18px;
}
.blinker {
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid #ffeda7;
  border-radius: 100%;
  width: 1.6rem;
  padding: 1.6px;
}
.blinker .inner {
  background: #fff;
  border-radius: 100%;
  height: 9px;
  width: 9px;
}
.flash {
  animation: flash 1s cubic-bezier(0.15, 0.41, 1, 1) infinite;
}
@keyframes flash {
  80%,
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@media (min-width: 600px) {
  .breakingnews-container h3.breakingnews-title {
    font-size: 18px;
  }
}
