/*
Theme Name: CookieScan
Theme URI:
Author: CookieScan
Author URI:
Description: A WordPress theme for checking website cookies and generating reports.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cookiescan
*/


@font-face {
      font-family: 'SpaceGrotesk';
      src: url('assets/fonts/SpaceGrotesk-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'SpaceGrotesk-Medium';
      src: url('assets/fonts/SpaceGrotesk-Medium.woff') format('woff');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'SpaceGrotesk-SemiBold';
      src: url('assets/fonts/SpaceGrotesk-SemiBold.woff') format('woff');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'SpaceGrotesk-Bold';
      src: url('assets/fonts/SpaceGrotesk-Bold.woff') format('woff');
      font-weight: normal;
      font-style: normal;
}

@font-face {
      font-family: 'SpaceGrotesk-Light';
      src: url('assets/fonts/SpaceGrotesk-Light.woff') format('woff');
      font-weight: normal;
      font-style: normal;
}

* {
      box-sizing: border-box;
}

html {
      scroll-behavior: smooth;
}

strong {
      font-family: SpaceGrotesk-SemiBold;
      font-weight: normal;
}

h3 {
      margin: 0;
      font-family: SpaceGrotesk;
      font-size: 3em;
}

h4 {
      margin: 0;
      font-family: SpaceGrotesk;
      font-size: 2em;
}

.btn,
.woocommerce a.button {
      color: #000;
      user-select: none;
      padding: 15px 25px;
      border: 1px solid #000;
      background: #fff;
      border-radius: 5px;
      font-size: .9em;
      line-height: 1em;
      text-decoration: none;
      cursor: pointer;
      display: inline-block;
      font-family: SpaceGrotesk-SemiBold;
}

.btn:hover {
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-success {
      color: #fff;
      background: #0dc167;
      border-color: #0dc167;
}

.btn-brand-1 {
      background: #009ee2;
      border-color: #009ee2;
      color: #fff;
}

.btn-brand-2 {
      background: #ffec00;
      border-color: #ffec00;
      color: #000;
}

.btn-brand-3 {
      background: #d20715;
      border-color: #d20715;
      color: #fff;
}

.btn-dark {
      background: #1d252c;
      color: #fff;
}

.btn-light {
      background: #fff;
      border: 1px solid #fff;
      color: #1d252c;
      font-size: 1em;
}

.btn-bordered {
      border: 1px solid #fff;
      color: #fff;
}

.btn-transparent-light {
      color: #fff;
}

.btn-transparent-light:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.15);
}

.btn-small {
      font-size: 14px;
      padding: 6px 15px;
}

.btn-large {
      font-size: 1.2em;
      padding: 15px 30px;
}

.btn i {
      margin-left: .2em;
}

.text-align-right {
      text-align: right;
}

.text-align-center {
      text-align: center;
}

.caption-text {
      font-family: SpaceGrotesk;
      font-size: 1.2em;
}

@media (max-width: 991px){
      .hide-on-mobile {
            display: none !important;
      }
}

@media (max-width: 991px){
      .col-reverse-on-mobile {
            flex-direction: column-reverse;
      }
}

.mobile-only {
      display: none !important;
}

@media (max-width: 991px){
      .mobile-only {
            display: block !important;
      }
}

.justify-center {
      justify-content: center !important;
}

.justify-end {
      justify-content: end;
}

.is-hidden {
      display: none !important;
}

.section-row {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      row-gap: 20px;
}

.section-col {
      width: 100%;
}

@media (min-width: 992px){
      .section-col {
            width: 50%;
      }

      .section-col-66 {
            width: 66%;
      }


      .section-col-50 {
            width: 50%;
      }

      .section-col-33 {
            width: 33%;
      }
}

body {
      font-family: SpaceGrotesk;
      max-width: 100vw;
      overflow-x: hidden;
      margin: 0;
      background: #161b27;
      color: #fff;
}

#content-wrapper {
      box-sizing: border-box;
      max-width: 1440px;
      margin: 0 auto;
}

header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      column-gap: 40px;
      padding: 20px;
}

img {
      max-width: 100%;
}

#logo {
      width: 150px;
}

@media (min-width: 992px){
      header {
            min-height: 110px;
      }

      #logo {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 6;
            transform: translate(-50%, -50%);
            width: 180px;
      }
}

.mobile-nav-trigger-container {
      display: none;
}

@media (max-width: 991px){
      .mobile-nav-trigger-container {
            text-align: center;
            display: block;
            position: relative;
            height: 40px;
      }

      .mobile-nav-trigger-container label {
            position: relative;
            display: flex;
            align-content: space-around;
            flex-direction: column;
            flex-wrap: wrap;
            row-gap: 4px;
            height: 28px;
            justify-content: flex-end;
            cursor: pointer;
      }

      .nav-trigger-line {
            display: block;
            width: 30px;
            height: 3px;
            background: #fff;
            transition: all 0.3s ease-in-out;
      }

      .nav-trigger-line:nth-child(2) {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
      }
}

#mobile-nav-trigger {
      display: none;
}


#mobile-nav-trigger:checked + div + .primary-nav {
      max-height: 100vh;
      padding: 30px;
      opacity: 1;
}

#mobile-nav-trigger:checked + div .nav-trigger-line:nth-child(1){
      transform: translateY(3px) rotate(45deg);
}


#mobile-nav-trigger:checked + div .nav-trigger-line:nth-child(2){
      height: 40px;
      width: 40px;
      background: transparent;
      border: 3px solid #434343;
      border-radius: 100%;
      top: 0 !important;
}


#mobile-nav-trigger:checked + div .nav-trigger-line:nth-child(3){
      transform: translateY(-5px) rotate(-45deg);
}

.primary-nav {
      display: flex;
      gap: 80px;
      width: 100%;
      margin: 0;
      padding: 0 30px;
      border-radius: 10px;
      font-size: .7em;
      max-height: 0;
      opacity: 0;
      transition: all .5s ease;
      overflow: hidden;
}

@media (min-width: 992px){
      .primary-nav{
            width: 660px;
            border-radius: 25px;
            max-height: 200px;
            padding: 30px 120px;
            opacity: 1;
            transition: none;
            justify-content: flex-end;
      }
}

@media (min-width: 1200px){
      .primary-nav {
            width: 810px;
            font-size: .8em;
      }
}

.primary-nav .menu,
.primary-nav .menu-cta {
      display: flex;
      flex-direction: column;
      row-gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
}

@media (min-width: 992px){
      .primary-nav .menu,
      .primary-nav .menu-cta {
            flex-direction: row;
      }
}

.primary-nav .menu-cta {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
}

.primary-nav .menu a,
.primary-nav .menu-cta a {
      color: #fff;
      text-decoration: none;
      font-size: 2em;
      white-space: nowrap;
      font-family: SpaceGrotesk-SemiBold;
      transition: color .4s ease;
}

.primary-nav .menu a.active,
.primary-nav .menu a:hover {
      color: #fff;
}

@media (min-width: 768px){
      .primary-nav .menu a::after {
            display: block;
            content: "";
            width: 100%;
            height: 2px;
            background: currentColor;
            opacity: 0;
            transition: all .4s ease;
            max-width: 0;
            transform: translateY(2px);
      }

      .primary-nav .menu a:hover::after {
            opacity: .8;
            max-width: 100%;
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
      }
}

@media (min-width: 992px){
      header {
            position: relative;
      }

      .primary-nav {
            position: absolute;
            top: 50%;
            left: 0;
            z-index: 5;
            transform: translateY(-50%);
            width: 100%;
            overflow: visible;
      }

      .primary-nav .menu {
            width: 100%;
            justify-content: space-between;
            column-gap: 15px;
      }

      .primary-nav .menu > li.last-left {
            margin-right: auto;
      }

      .primary-nav .menu a,
      .primary-nav .menu-cta a {
            position: relative;
            padding: 12px 0px 15px;
            font-size: 1.2em;
      }
}

@media (min-width: 1200px){
      .primary-nav .menu {
            column-gap: 40px;
      }
}

.primary-nav .menu-cta a,
.primary-nav .cta-btn-wrapper a {
      padding: 10px 25px;
      background: #009ee2;
      color: #fff;
      text-align: center;
      border-radius: 20px;
      box-shadow: 4px 4px 5px rgba(0,0,0,.2);
      transition: all .2s ease;
      white-space: nowrap;
}

.primary-nav .menu-cta a:hover,
.primary-nav .cta-btn-wrapper a:hover {
      box-shadow: 4px 4px 5px rgba(0,0,0,.4);
}

.primary-nav .cta-btn-wrapper a {
      display: block;
      margin: 20px 0;
}

.primary-nav .submenu,
.section-nav .submenu {
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      list-style: none;
      margin: 10px 0 0 0;
      transition: all .4s ease;
      overflow: hidden;
      opacity: 0;
      box-sizing: border-box;
      max-height: 0;
      visibility: hidden;
}

.primary-nav .submenu img,
.primary-nav .submenu .description {
      display: none;
}

.primary-nav .has-submenu:hover .submenu,
.section-nav .has-submenu:hover .submenu{
      opacity: 1;
      visibility: visible;
      max-height: 800px;
}

.primary-nav .has-submenu > a,
.section-nav .has-submenu > a {
      display: flex;
      flex-direction: row-reverse;
      column-gap: 5px;
      align-items: center;
      justify-content: space-between;
      padding: 0
}

.primary-nav .has-submenu > a::before,
.section-nav .has-submenu > a::before {
      display: block;
      content: '';
      width: 0;
      height: 0;
      border-left: .35em solid transparent;
      border-right: .35em solid transparent;
      border-top: .35em solid;
}

.primary-nav .has-submenu a::after,
.section-nav .has-submenu a::after,
.section-nav .has-submenu a::after {
      display: none;
}

@media (min-width: 992px){
      .primary-nav .has-submenu > a,
      .section-nav .has-submenu > a {
            justify-content: flex-end;
      }

      .primary-nav .submenu,
      .section-nav .submenu {
            position: absolute;
            z-index: 2;
            gap: 10px;
            margin: 0;
            padding: 30px 25px 0 25px;
            border-bottom-left-radius: 25px;
            border-bottom-right-radius: 25px;
            transform: translateX(-25px);
            background: rgba(22, 30, 39, 0.85);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgb(22, 30, 39);
            max-height: unset;
      }

      .primary-nav .submenu.megamenu,
      .section-nav .submenu.megamenu {
            position: absolute;
            top: 60px;
            left: 50%;
            z-index: 4;
            transform: translateX(-50%);
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            width: 100%;
            gap: 50px;
            margin: 0;
            padding: 20px 50px;
            max-height: unset;
            box-sizing: border-box;
            border-radius: 0;
            font-size: 1em;
      }

      .primary-nav .submenu li,
      .section-nav .submenu li {
            width: calc(33% - 50px);
      }

      .primary-nav .submenu li a,
      .section-nav .submenu li a {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0 20px;
            width: 100%;
            transition: all .4s ease;
      }

      .primary-nav .submenu.megamenu a:hover,
      .section-nav .submenu.megamenu a:hover {
            color: #fff !important;
            transform: translateY(-2px);
      }

      .primary-nav .submenu img,
      .section-nav .submenu img {
            display: block;
            width: 40px;
            height: 40px;
            aspect-ratio: 1;
      }

      .primary-nav .submenu .description,
      .section-nav .submenu .description {
            font-size: .8em;
            font-family: SpaceGrotesk-Light;
            display: block;
            width: 80%;
            color: #fff;
            margin: 3px 0 0;
            white-space: normal;
      }
}

.section-nav {
      display: none;
      position: sticky;
      top: 0;
      z-index: 4;
      margin: 30px 0 0;
      padding: 20px 0;
}

.section-nav.is-sticky {
      padding: 20px 0;
      background: #161b27;
}

.admin-bar .section-nav {
      top: 32px;
}

.section-nav .menu {
      display: flex;
      gap: 20px;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      padding: 0 20px;
      list-style: none;
      margin: 0 50px 0 0;
}

.section-nav .menu > li:first-child {
      margin-left: auto;
}

.section-nav .menu a:not(.btn) {
      display: flex;
      gap: 10px;
      align-items: center;
      color: #fff;
      text-decoration: none;
      transition: all .4s ease;
}

.section-nav .menu a:not(.btn):hover {
      color: #5f8de8;
}

.section-nav .initial-hidden {
      visibility: hidden;
      opacity: 0;
      transition: all .4s ease;
}

.section-nav .buy-now {
      visibility: none;
      opacity: 0;
      transition: all .4s ease;
      transform: translateX(200%);
}

.section-nav.is-sticky .buy-now {
      visibility: visible;
      opacity: 1;
      transform: translateX(0%);
}

.section-nav.is-sticky  .initial-hidden {
      visibility: visible;
      opacity: 1;
}

.section-nav .buy-now a {
      display: flex;
      align-items: center;
      gap: 10px;
}

.section-nav .buy-now img {
      width: 32px;
      height: 32px;
      aspect-ratio: 1;
}

@media (min-width: 992px){
      .section-nav {
            display: flex;
      }
}

@media (min-width: 1200px){
      .section-nav .menu {
            gap: 60px;
      }
}

.section-nav .submenu.megamenu {
      top: 70px;
      font-size: .8em;
}

.section-nav .submenu.megamenu a {
      font-size: 1.2em;
      font-family: SpaceGrotesk-SemiBold;
}

footer {
      position: relative;
      z-index: 3;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      justify-content: space-around;
      padding: 40px;
      color: #fff;
      min-height: 300px;
}

@media (min-width: 576px){
      footer {
            padding: 60px 60px 120px;
            background-position: bottom left;
      }
}

footer a {
      color: #fff;
      text-decoration: none;
      transition: all .4 ease;
}

footer a:hover {
      opacity: .7;
}

#footer-logo {
      display: flex;
      flex-direction: column;
      gap: 40px;
}

#footer-logo img {
      width: 215px;
}

footer h3 {
      font-size: 1em;
      font-family: SpaceGrotesk-SemiBold;
      text-transform: uppercase;
      margin-bottom: 20px;
}

.footer-menu {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap;
      row-gap: 40px;
      width: 66%;
      max-width: 700px;
}

@media (min-width: 768px){
      .footer-menu {
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
      }
}

.footer-menu-col {
      min-width: 200px;
}

.social-icons,
.footer-menu-list {
      margin: 0;
      padding: 0;
      list-style: none;
      font-family: SpaceGrotesk;
}

.footer-menu-list {
      display: flex;
      flex-direction: column;
      gap: 5px;
}

.social-icons {
      display: flex;
      column-gap: 10px;
}

.social-icons a {
      display: flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border: 2px solid;
      border-radius: 100%;
      font-size: .8em;
}

.popup-message {
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 1s ease;
      background: #0dc167;
      min-width: 300px;
      padding: 30px;
      border-radius: 10px;
      color: #fff;
      z-index: 2147483647;
}

.woocommerce-message {
      border-top-color: #0dc167;
}

.woocommerce-error {
      border-top-color: #f6330c;
      font-family: SpaceGrotesk;
}

.woocommerce-message::before {
      content: "\e015";
      color: #0dc167;
}

.woocommerce-error::before {
      color: #f6330c;
}

.woocommerce-error a {
      font-family: 'SpaceGrotesk-SemiBold';
      color: #000;
}

#toast-container {
      display: flex;
      flex-direction: column;
      row-gap: 15px;
      position: fixed;
      top: 44px;
      right: 15px;
      z-index: 2147483647;
}


.toast-message {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      column-gap: 20px;
      width: 400px;
      min-height: 80px;
      max-width: 90%;
      border-radius: 15px;
      padding: 20px;
      background: linear-gradient(98deg, rgb(238, 63, 28) 0%, rgb(239, 79, 26) 100%);
      transition: all 1s ease;
      color: #fff;
      font-family: SpaceGrotesk-SemiBold;
      font-size: 1.2em;
}

pre.wp-block-code code {
      background: #0d0d0d;
      color: #fff;
      padding: 10px 20px;
}

.select2-results {
      color: #000;
}

article.simple-page {
      background: #fff;
      padding: 40px;
      color: #000;
}

article.simple-page h1 {
      font-size: 2.4em;
      font-family: SpaceGrotesk-Bold;
}

#madein-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      position: absolute;
      bottom: 0;
      font-size: .8em;
}

.madein {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap:10px;
}

.madein img {
      height: 15px;
}
