:root {
  --pixanewspro-primary: #d2a7ef;
  --pixanewspro-primary-text: #f9ffe7;
  --pixanewspro-background-main: #ffffff;
  --pixanewspro-background-darker: #eeeeee;
  --pixanewspro-secondary: #3d405b;
  --pixanewspro-secondary-dark: #33202a;
  --pixanewspro-secondary-text: #FFF;
  --pixanewspro-text-dark: #111;
  --pixanewspro-text: #555;
  --pixanewspro-text-light: #777;
  --pixanewspro-header-background: #000000;
  --pixanewspro-header-lighter: #222;
  --pixanewspro-header-text: #FFFFFF;
  --pixanewspro-top-bar-text: #777777;
  --pixanewspro-mobile-header-background: #FFFFFF;
  --pixanewspro-mobile-header-text: #222222;
}
.primary-font {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}
.secondary-font {
  font-family: "Oswald", Times, "Times New Roman", serif;
}
body {
  background: var(--pixanewspro-background-main);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Oswald", Times, "Times New Roman", serif;
}
a {
  color: var(--pixanewspro-secondary);
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
a:hover,
a:visited {
  color: var(--pixanewspro-secondary-dark);
}
a:focus {
  outline: dotted 1px black;
}
::-moz-selection {
  background: var(--pixanewspro-primary);
  color: var(--pixanewspro-primary-text);
}
::selection {
  background: var(--pixanewspro-primary);
  color: var(--pixanewspro-primary-text);
}
.pixanewspro-pagination {
  text-align: center;
}
.pixanewspro-pagination .page-numbers {
  color: var(--pixanewspro-text);
  margin-right: 3px;
  margin-left: 3px;
  border: solid 1px var(--pixanewspro-text-light);
  padding: 2px 10px;
  text-decoration: none;
}
.pixanewspro-pagination .page-numbers.current {
  background: var(--pixanewspro-background-darker);
}
.pixanewspro-pagination a.page-numbers:hover {
  background: var(--pixanewspro-background-darker);
}
#cursor {
  position: fixed;
  top: -10px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--pixanewspro-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}
@media only screen and (max-width: 1200px) {
  #cursor {
    display: none;
  }
}
#cursor-border {
  --size: 50px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px var(--pixanewspro-primary);
          box-shadow: 0 0 0 1px var(--pixanewspro-primary);
  pointer-events: none;
  -webkit-transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 999;
}
@media only screen and (max-width: 1200px) {
  #cursor-border {
    display: none;
  }
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  /* You can customize the background color */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
}
#loader {
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid var(--pixanewspro-primary);
  /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Reading progress container style */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--pixanewspro-background-darker);
  z-index: 9999;
}
/* Reading progress bar style */
.reading-progress-bar {
  height: 100%;
  background-color: var(--pixanewspro-primary);
  width: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  /* Add smooth transition */
}
.category-backgroud {
  background: var(--pixanewspro-background-darker);
}
.elementor-template-full-width #content {
  padding: 0;
}
img[data-src] {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  will-change: opacity;
}
/* appear animation */
img[data-src][src] {
  opacity: 1;
}
