/*
Theme Name: Dailylad
Theme URI: 
Author: Jonathan
Description: Wordpress Theme
Version: 1.0
*/

html, body{
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
}

body {
  padding-top: 60px;
  overflow-x: hidden;
}

hr
{
  margin: 2.5rem 0;
}

html
{
  background-color: #eee;
}

.site-main
{
  min-height: 100%;
}


a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.main-area {
  overflow-x: hidden;
}

.yarpp .card:hover {
  background: transparent !important;
}

/* Titles */

.title-lg {
  font-size: 38px;
  color: #101010;
  letter-spacing: -0.4px;
  font-weight: bold;
  font-family: "Archivo", "Helvetica Neue";
}

.title-super {
  font-size: 29px;
  color: #101010;
  letter-spacing: -0.4px;
  font-weight: bold;
  font-family: "Archivo", "Helvetica Neue";
}

.title-md {
  font-size: 26px;
  color: #101010;
  letter-spacing: -0.38px;
  font-weight: bold;
  font-family: "Archivo", "Helvetica Neue";
}

.title-sm {
  font-size: 18px;
  color: #111111;
  font-weight: bold;
  text-decoration: none;
  margin: 10px 0px;
  font-family: "Archivo", "Helvetica Neue";
}

.title-tiny {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Archivo", "Helvetica Neue";
  line-height: 20px;
}

/* Notifications */

.n-small {
  font-size: 11px;
  opacity: 0.75;
  padding: 5px 10px 6px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}

.n-tag {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  color: #3773cc;
  text-decoration: none;
  display: inline-block;
  border-radius: 1px;
}

.n-tag:hover {
  color: #b9b9b9;
}

.lg-tag {
  text-transform: uppercase;
  text-align: center;
  background: #000;
  display: inline-block;
  margin: auto;
  color: #fff;
  padding: 7px 10px;
  font-weight: 800;
  font-size: 12px;
  z-index: 99;
  line-height: 1;
  letter-spacing: -0px;
  font-family: "Archivo";
}

/* Buttons */

.btn-facebook {
  background: #3b5998;
}

.btn-facebook:hover {
  background-color: #4c70ba;
}

.btn-pinterest {
  background-color: #bd081c;
}

.btn-pinterest:hover {
  background-color: #ee0a23;
}

.btn-sm {
  font-size: 13px;
  font-weight: 500;
  padding: 5px 13px;
}

/* Text */

.text-tiny {
  font-size: 12px;
  text-decoration: none;
}

a.text-tiny:hover {
  text-decoration: underline;
}

.text-md {
  font-size: 15px;
  color: #656565;
}

.text-sm {
  font-size: 13px;
  color: #656565;
}

/* Utilities */

.border-start {
  border-color: #efefef !important;
}

.box-well {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ededed;
  border-radius: 3px;
}

/* Mobile Navigation Styles */

.pushy {
  background: #ffffff;
  width: 300px;
}

.pushy #primary-menu {
  list-style: none;
  padding: 0px;
}

.pushy #primary-menu a {
  color: #111;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 25px;
}

.pushy-left {
  transform: translate3d(-300px, 0, 0); /* Updated the values */
  /* Don't forget the vendor prefixes */
}

.pushy-open-left #container,
.pushy-open-left .push {
  transform: translate3d(300px, 0, 0); /* Updated the values */
}

/* Navigation Styles */

.navbar {
  background: #000;
  height: 60px;
}

.navbar .nav-link {
  padding-top: 18px;
  padding-bottom: 18px;
}

.navbar .nav-link:hover {
  opacity: 0.8;
  cursor: pointer;
}

.navbar .dropdown-toggle::after {
  content: none;
}

.navbar-brand {
  padding: 21px 13px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  position: absolute;
  line-height: 1px;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.75;
}

.grid-container {
  display: grid;
  gap: 0rem;
}

.trending-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #efefef;
}

.trending-container .trending-spin {
  position: absolute;
  right: 20px;
  top: 20px;
  transform-origin: center;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Main Area */

.article-feed {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.main-area .card {
  border-bottom-color: #efefef !important;
  background-color: transparent;
  border-right: 1px solid #eee;
  border-left: none;
  border-top: none;
}

.main-area .card-body {
  padding: 40px;
}

.main-area .card:hover {
  background: #f6f7f83d;
}

.card-footer-text a {
  font-weight: 600;
  opacity: 0.6;
  color: #000;
}

.card-footer-text a:hover {
  opacity: 1;
}

.card-footer-text a:last-child {
  font-weight: 400 !important;
}

/* Sidebar */

.sidebar {
  height: 100vh;
  width: 230px;
}

.sidebar-menu {
  position: fixed;
  left: 0;
  width: 230px;
  height: 100%;
  top: 0px;
  overflow-x: hidden;
  display: block !important;
  overflow-y: auto;
  background-color: #f6f7f8;
}

.menu-sidebar-container ul {
  padding: 0px;
  list-style: none;
}

.menu-sidebar-container li a {
  padding: 7px 20px;
  display: block;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.menu-sidebar-container .current-menu-item {
  background-color: #eaebec;
}

.menu-sidebar-container li a:hover {
  background-color: #eaebec;
}

.menu-sidebar-container li img {
  width: 26px;
  height: 25px;
  border-radius: 3px;
}

/* Fix Medium Popper */
.medium-zoom-overlay
{
  z-index: 9998;
}

.medium-zoom-image--opened
{
  z-index: 9999;
}

/* Breadcrumbs */
#breadcrumbs a {
  color: #6c757d !important;
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

/* Load more Button */
.view-more-button {
  color: #111;
  border: 1px solid #ddd;
  background-color: transparent;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.view-more-button:hover {
  background-color: #000000;
  color: #fff;
  border: 1px solid #000;
}

.page-load-status {
  display: none;
}

.status {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 10px;
  border-radius: 35px;
  box-shadow: 1px 2px 8px #00000052;
}

/* Main Post */

.entry-header {
  border: 0px;
}

.entry-header .avatar {
  border-radius: 30px;
}

.content-body p {
  font-size: 20px;
  font-family: Charter, Georgia, "Times New Roman", Times, serif;
  margin-bottom: 2em;
}

.content-body ul
{
  font-size: 20px;
  font-family: Charter, Georgia, "Times New Roman", Times, serif;
  margin-bottom: 2em;
}


.content-body a {
  color: #000;
  text-decoration: underline;
}

.content-body h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.content-body h3 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.content-body h4 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.content-body iframe {
  width: 100% !important;
}

.content-body figcaption {
  font-size: 14px;
  text-align: center;
  margin-top: 0.1rem;
  opacity: 0.85;
}

.content-body .twitter-tweet {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
}

/* Figure Media & Text */

.content-body .wp-block-media-text {
  grid-template-columns: 30% 1fr;
  padding: 20px 0px;
}

.content-body .wp-block-media-text p {
  margin-bottom: 0px;
}

.content-body .wp-block-media-text__media {
  align-self: start;
}

.content-body .wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: auto;
}

.content-body .wp-block-image img
{
  width: 100%;
  height: auto;
}

.content-body .wp-block-button__link
{
  color: #fff !important;
  background-color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Header */

.banner-header {
  border-bottom: 1px solid #efefef;
  background-color: #000;
}

.banner-header .title-super
{
  color:#eee;
}

.banner-header .text-md
{
  color:#afafaf;
}

.navbar button:focus {
  outline: none;
  box-shadow: none;
}

.icon-dark {
  display: block;
}

.icon-light {
  display: none;
}

.dropdown-search {
  min-width: 17rem;
}

.tooltip > .tooltip-inner {
  font-size: 12px;
}


/* Footer */

footer
{
  background-color: #111;
}

footer ul
{
  list-style-type: none;
  padding:0px;
}

footer p
{
  color:#aaa;
}

footer ul li a
{
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.25;
  color: #aaa;
  font-weight: 500;
}

footer ul li a:hover
{
  color:#fff;
}

footer .lg-tag
{
  border: 2px inset #000;
  background: #fff;
  color: #000;
  filter: invert(1);
}

/* Dark Mode */

.dark-mode .navbar-brand img {
  filter: brightness(0) invert(1);
}
.dark-mode {
  background-color: #222;
  min-height: 100vh;
}

.dark-mode .bg-light {
  background-color: #1d1d1d !important;
}

.dark-mode .lg-tag {
  filter: invert(1);
}

.dark-mode .sidebar-menu {
  background-color: #1b1b1b;
}
.dark-mode .icon-light {
  display: block;
}
.dark-mode .icon-dark {
  display: none;
}
.dark-mode .text-dark {
  color: #eee !important;
}
.dark-mode .text-muted {
  color: #989898 !important;
}
.dark-mode .title-md {
  color: #eee;
}
.dark-mode .title-sm {
  color: #eee;
}
.dark-mode .text-secondary {
  color: #989898 !important;
}
.dark-mode #breadcrumbs a {
  color: #989898 !important;
}
.dark-mode .text-sm {
  color: #a5a5a5;
}
.dark-mode .text-md {
  color: #afafaf;
}
.dark-mode .box-well {
  background: rgb(34 34 34);
  border: 0px;
  border-radius: 3px;
}
.dark-mode .banner-header {
  border-color: #333333;
}
.dark-mode .banner-header .title-super
{
  color:#eee;
}
.dark-mode .border-start {
  border-color: #333333 !important;
}
.dark-mode svg {
  filter: brightness(0) invert(1);
}
.dark-mode .trending-container {
  border-color: #333 !important;
}
.dark-mode .main-area .card {
  border-color: #333 !important;
}
.dark-mode .main-area .card:hover {
  background: #f6f7f805;
}
.dark-mode .card-footer-text a {
  color: #eee !important;
}
.dark-mode .n-tag {
  background: #eee;
  color: #222;
}
.dark-mode .n-small {
  color: #eee;
}
.dark-mode .menu-sidebar-container li a {
  color: #eee;
}
.dark-mode .menu-sidebar-container li a:hover {
  background: #252525;
}
.dark-mode .menu-sidebar-container .current-menu-item {
  background-color: #252525;
}
.dark-mode .content-body {
  color: #ccc;
}
.dark-mode .post-meta a {
  color: #eee !important;
}
.dark-mode h1 {
  color: #eee;
}
.dark-mode h2 {
  color: #eee;
}
.dark-mode h3 {
  color: #eee;
}
.dark-mode h4 {
  color: #eee;
}
.dark-mode h5 {
  color: #eee;
}
.dark-mode .content-body a {
  color: #ccc;
}

.dark-mode .view-more-button {
  color: #eee;
  border: 1px solid #888;
  background-color: transparent;
}

.dark-mode .view-more-button:hover {
  border-color: #444;
  background-color: #444;
  color: #eee;
}

.dark-mode .content-body .wp-block-button__link
{
  background-color: #eee !important;
  color:#222 !important;
}


.dark-mode .btn-dark {
  background: #eee !important;
  color: #222 !important;
}

.dark-mode .dropdown-search {
  background: #333;
  border: 1px solid #444;
}

/* RESPONSIVE STYLES */

@media only screen and (min-width: 993px) {
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
}

/* MOBILE */
@media only screen and (max-width: 600px) {
  .main-area img {
    width: 100% !important;
  }

  body {
    padding-top: 60px;
  }

  .title-sm {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin: 10px 0px;
  }

  .title-super
  {
    font-size: 26px;
  }

  .title-lg
  {
    font-size: 30px;
  }

  .title-md {
    font-size: 22px;
  }

  .trending-container
  {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr;
  }
  .article-feed
  {
    grid-template-columns: 1fr;
  }
  .article-feed .card
  {
    border-right: none;
    padding: 15px;
  }
  .article-feed .card-body
  {
    padding-left:1rem;
    padding-right:1rem;
    padding-bottom:0px;
    padding-top:0px;
  }
}