@charset "utf-8";

/* CSS Document */
/* BREAKPOINTS: 
@media (min-width: 0px)
@media (min-width: 576px)
@media (min-width: 768px)
@media (min-width: 992px)
@media (min-width: 1200px)
*/
:root {
  --color-a: rgb(57, 102, 171);
  --color-a-box: rgba(93, 107, 119, 0.8);
  --color-hover: rgb(245, 156, 0);
  --color-hover-2: rgba(175, 226, 108, 1);
  --color-code: rgb(247, 38, 93);
  --nav-text-color: rgba(92, 106, 118, 1);
  --text-dark-100: rgba(35, 40, 45, 1);
  --text-dark-80: rgba(35, 40, 45, 0.8);
  --text-dark-60: rgba(35, 40, 45, 0.6);
  --text-dark-40: rgba(35, 40, 45, 0.4);
  --text-light-40: rgba(92, 106, 118, 0.4);
  --text-light-50: rgba(92, 106, 118, 0.5);
  --text-light-60: rgba(92, 106, 118, 0.6);
  --text-light-70: rgba(92, 106, 118, 0.7);
  --text-light-80: rgba(92, 106, 118, 0.8);
  --text-light-90: rgba(92, 106, 118, 0.9);
  --text-light-100: rgba(92, 106, 118, 1);

  --bs-primary: #2f568f;
  --bs-primary-hover: #4e688e;

  --bg-offcanvas-dark: rgb(35, 40, 45);

  --free-premium-color-primary: rgb(61, 182, 158);
  --premium-color-primary: rgba(189, 176, 104, 0.5);
  --label-btn-premium-color: rgb(162, 153, 104);
  --label-btn-premium-color-hover: rgba(207, 198, 146, 1);
  --label-btn-premium-text-color: rgba(26, 51, 62, 0.8);

  --search-overlay-speed: 0.6s;
  /*animation speed */
  --search-overlay-offset: 56px;
}

@font-face {
  font-family: 'PT_Sans';
  src: url('../fonts/PT_Sans/PT_Sans-Web-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto-Condensed';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: bolder;
  font-display: swap;
}


@font-face {
  font-family: 'Roboto-Condensed';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto-Condensed';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto-Condensed';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Silkscreen';
  src: url('../fonts/Silkscreen/Silkscreen-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

html,
body {
  font-family: 'Roboto-Condensed', Arial, Helvetica, sans-serif !important;
  letter-spacing: normal !important;
  font-weight: 300;
  background-color: rgba(31, 43, 54, 0.0);
  background-image: url(pattern/blue_leather.png) !important;
  background-repeat: repeat;
  background-attachment: fixed;
}

@media (min-width: 0px) {

  html,
  body {
    font-size: 1rem;
  }

  html {
    padding-top: 97px;
    scroll-behavior: smooth;
  }

  :target:before {
    content: "";
    display: block;
    height: 97px;
    margin: -97px 0 0;
  }
}

@media (min-width: 992px) {

  html,
  body {
    font-size: 1.1rem;
  }

  html {
    padding-top: 101px;
    scroll-behavior: smooth;
  }

  :target:before {
    content: "";
    display: block;
    height: 101px;
    margin: -101px 0 0;
  }
}

.btn-icon,
.btn-icon:active,
.btn-icon:focus {
  color: rgba(0, 0, 0, 0.4);
  background-color: transparent;
  border: none;
  padding: 0.3rem;
  margin: 0.125rem;
}

.btn-icon:hover {
  color: rgba(0, 0, 0, 0.2) !important;
}

.btn-default {
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background-color: rgba(0, 0, 0, 0.1) !important
}


/* 
################################
###############  COMMON ########
########################
*/
a {
  color: var(--color-a);
  text-decoration: none;
  transition: color 0.4s ease;
}

a:hover {
  color: var(--color-hover)
}

b,
strong {
  font-weight: 700;
}

.btn,
.form-control {
  border-radius: 0px !important;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
}

section.default {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.card,
.card-img,
.card-img-top,
.card-img-left img {
  border-radius: 0px;
}

.alert {
  font-weight: 300;
}

.no-margin-bottom {
  margin-bottom: 0rem !important;
}

.stroke {
  text-decoration: line-through !important;
}

.glow {
  color: rgba(175, 226, 108, 1);
  transition: color ease-in 0.1s
}

.blink {
  color: inherit;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

/*
.mr-1 {margin-right:0.25rem !important;}
.mr-2 {margin-right:0.5rem !important;}
.mr-3 {margin-right:0.8rem !important;}
.mr-4 {margin-right:1.2rem !important;}
.mr-5 {margin-right:2.5rem !important;}

.ml-1 {margin-left:0.25rem !important;}
.ml-2 {margin-left:0.5rem !important;}
.ml-3 {margin-left:0.8rem !important;}
.ml-4 {margin-left:1.2rem !important;}
.ml-5 {margin-left:2.5rem !important;}

.mt-1 {margin-top:0.25rem !important;}
.mt-2 {margin-top:0.5rem !important;}
.mt-3 {margin-top:0.8rem !important;}
.mt-4 {margin-top:1.2rem !important;}
.mt-5 {margin-top:2.5rem !important;}

.mb-1 {margin-bottom:0.25rem !important;}
.mb-2 {margin-bottom:0.5rem !important;}
.mb-3 {margin-bottom:0.8rem !important;}
.mb-4 {margin-bottom:1.2rem !important;}
.mb-5 {margin-bottom:2.5rem !important;}

.pr-1 {padding-right:0.25rem !important;}
.pr-2 {padding-right:0.5rem !important;}
.pr-3 {padding-right:0.8rem !important;}
.pr-4 {padding-right:1.2rem !important;}
.pr-5 {padding-right:2.5rem !important;}

.pl-1 {padding-left:0.25rem !important;}
.pl-2 {padding-left:0.5rem !important;}
.pl-3 {padding-left:0.8rem !important;}
.pl-4 {padding-left:1.2rem !important;}
.pl-5 {padding-left:2.5rem !important;}

.pt-1 {padding-top:0.25rem !important;}
.pt-2 {padding-top:0.5rem !important;}
.pt-3 {padding-top:0.8rem !important;}
.pt-4 {padding-top:1.2rem !important;}
.pt-5 {padding-top:2.5rem !important;}

.pb-1 {padding-bottom:0.25rem !important}
.pb-2 {padding-bottom:0.5rem !important}
.pb-3 {padding-bottom:0.8rem !important}
.pb-4 {padding-bottom:1.2rem !important}
.pb-5 {padding-bottom:2.5rem !important}
*/

.btn-xs {
  font-size: 0.8rem;
  line-height: 0.8rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

/*BOOTSTRAP */
@media (min-width: 0px) {
  .modal-backdrop.show {
    opacity: 1;
  }

  .modal-no-padding.modal-fullscreen-sm-down .modal-body {
    padding: 0rem;
  }

  .section-spacer:first-child {
    margin-top: 1rem;
  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link {
    font-size: 0.8em !important;
    border-radius: 0px;
    display: none;
  }

  .pagination a.page-link {
    font-size: 0.9em;
    color: rgba(92, 105, 118, 1);
    background-color: rgba(35, 40, 45, 0);
    border-color: rgba(92, 105, 118, 1);
    box-shadow: none;
  }

  .pagination a.page-link:hover {
    background-color: rgba(50, 57, 65, 0.8);
  }

  .page-link.active,
  .active>.page-link {
    background-color: rgba(245, 156, 0, 1);
    border-color: rgba(92, 105, 118, 1);
  }
}

@media (min-width: 576px) {
  .modal-backdrop.show {
    opacity: 0.94;
  }

  .modal-no-padding.modal-fullscreen-sm-down .modal-body {
    padding: 1rem;
  }
}

@media (min-width: 922px) {
  .section-spacer:first-child {
    margin-top: 3rem;
  }

}

[class~="100vh"] {
  min-height: 100vh;
}

.btn-close:focus {
  box-shadow: none;
}

.form-switch .form-check-input {
  border-radius: 0rem;
}

.input-group-text {
  border-radius: 0rem;
}


/*CUSTOMIZE MINI PLAYER */
.mbMiniPlayer.YB .playerTable {
  border: none !important
}


/* checkout page */
.checkout h1 {
  font-size: 1.5em !important;
  color: rgba(0, 0, 0, 0.4);
}

/* AJAX SEARCH LITE */
@media(min-width:0px) {
  .asl_w_container {
    min-width: auto;
  }

  div.asl_r .results .item {
    background-color: var(--text-light-100);
  }

  .asl_w_container,
  div.asl_r .results a span.overlap,
  div.asl_r .results .item .asl_content h3,
  div.asl_r .results .item .asl_content h3 a {
    font-size: 1.1rem !important;
    line-height: normal;
    font-family: 'Roboto-Condensed', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, monospace !important;
    color: var(--text-dark-100);
  }

  div.asl_r .results .item .asl_content h3 a:hover {
    color: var(--color-hover);
  }
}

@media(min-width:922px) {
  .asl_w_container {
    min-width: 250px;
  }

  div.asl_r .results .item {
    background-color: var(--bg-offcanvas-dark);
  }

  .asl_w_container,
  div.asl_r .results a span.overlap,
  div.asl_r .results .item .asl_content h3,
  div.asl_r .results .item .asl_content h3 a {
    line-height: normal;
    font-family: 'Roboto-Condensed', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, monospace !important;
    color: var(--text-light-100);
  }
}

/* all screens */
#ajaxsearchlite1 .probox .proinput,
#ajaxsearchlite1 .probox .proinput input,
#ajaxsearchlite2 .probox .proinput,
#ajaxsearchlite2 .probox .proinput input,
#ajaxsearchlite3 .probox .proinput,
#ajaxsearchlite3 .probox .proinput input {
  font-size: 1.3rem;
  font-weight: 300 !important;
  font-family: 'Roboto-Condensed', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, monospace !important;
}

/* large screens only */
#ajaxsearchliteres1 {
  z-index: 9999999 !important;
}

#ajaxsearchliteres2 {
  width: auto !important;
  margin-right: 0.5rem;
}

#ajaxsearchliteres3 {
  width: auto !important;
  left: 0px !important;
  margin-right: 0.5rem;
  margin-left:0.4rem;
}

#ajaxsearchlite1 .probox .proinput,
#ajaxsearchlite1 .probox .proinput input,
#ajaxsearchlite1 .probox,
#ajaxsearchlite1 div.asl_w .probox {
  background-color: var(--bg-offcanvas-dark) !important;
  color: var(--text-light-100) !important;

}

/* small screens */
#ajaxsearchlite2 .probox .proinput,
#ajaxsearchlite2 .probox .proinput input,
#ajaxsearchlite3 .probox .proinput,
#ajaxsearchlite3 .probox .proinput input,
#ajaxsearchlite2 .probox,
#ajaxsearchlite2 div.asl_w .probox,
#ajaxsearchlite3 .probox,
#ajaxsearchlite3 div.asl_w .probox {
  background-color: var(--text-light-100) !important;
  color: var(--text-dark-100) !important;
}





div.asl_r.vertical {
  background-color: rgba(var(--bg-offcanvas-dark));
  padding: none;
}



div.asl_r p.showmore span {
  font-family: 'Roboto-Condensed', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, monospace !important;
  font-size: 1.2rem !important;
  color: var(--text-light-100);
}

.checkout legend {
  margin-bottom: 3em;
}

.checkout .btn-primary {
  background-color: #23282d;
  color: #6C7E8C;
  border-color: #5c6a76
}

.checkout .btn-primary:hover,
.checkout .btn-primary:focus,
.checkout .btn-primary:active {
  background-color: #434D56;
  color: #6C7E8C;
  border-color: #5c6a76
}

.checkout .btn-warning {
  background-color: #f59c00;
  color: #fff;
  border-color: #D58500;
}

.checkout .btn-warning:hover,
.checkout .btn-warning:focus,
.checkout .btn-warning:active {
  background-color: #FFB333;
  color: #fff;
  border-color: #D58500;
}

.checkout .countdown {
  font-size: 1.1rem;
}

.checkout .countdown-title {
  text-transform: uppercase;
}

.checkout .kkc-days-label,
.checkout .kkc-hours-label,
.checkout .kkc-min-label,
.checkout .kkc-sec-label {
  display: none;
}

.checkout .kkc-days,
.checkout .kkc-days-text,
.checkout .kkc-hours,
.checkout .kkc-min,
kkc-sec {
  padding-right: 0.2rem;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #a94442;
  background-color: #EACBCA;
  padding-left: 3px;
  padding-right: 3px;
}

/* RATE MY POST - STAR RATING */
.rmp-main-title {
  font-weight: 400;
}

.rmp-main {
  margin-top: 48px;
  margin-bottom: 32px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #D8D8D8;
}

.rmp-heading--subtitle {
  font-size: 0.8em;
  color: #999;
  text-transform: uppercase;
}

.rmp-heading--title {
  text-transform: uppercase;
  color: #999;
  margin-top: 64px !important;
}

.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__results {
  display: none;
}

/* 
########################
###############  NAVBAR & FOOTER
########################
*/

/*COMMON */
.nav-1.navbar-expand-sm .navbar-nav .nav-link,
.nav-2.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: var(--color-hover) !important;
}

.nav-link,
.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light-100) !important;
}

.nav-link:hover,
.nav-link:active,
.nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:active {
  color:var(--color-hover) !important;
  background-color: transparent
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: transparent;
}


/* NAV 0 */
.nav-0.navbar {
  padding: 0rem 0rem;
}

.nav-0.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(35, 40, 45, 1) !important;
}

.nav-0 .navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  width: max-content;
}

.nav-0 .btn-lang {
  color: var(--text-light-100);
  background-color: transparent;
  border: 1px solid rgba(92, 106, 118, 1);
  margin-right: 0rem;
}

.nav-0 .btn-lang:hover,
.nav-1 .btn-lang.active,
.nav-2 .btn-lang:hover,
.nav-2 .btn-lang.active {
  color: rgba(245, 156, 0, 1);
  border: 1px solid rgba(245, 156, 0, 1);
}

.nav-0 .btn-lang:hover,
.nav-2 .btn-lang:hover {
  background-color: rgba(245, 156, 0, 0.4);
}

.nav-0 .dropdown-menu {
  border-radius: 0rem;
  background-color: rgba(35, 40, 45, 1);
}

.nav-0 .dropdown-item {
  color: var(--text-light-100);
}

.nav-0 .dropdown-divider {
  border-top-color: var(--text-light-100);
  border-top-width: 3px;
}

.nav-0 .nav-link {
  font-size: 1.1rem;
}

.nav-0 a.btn-cart {
  color: rgba(199, 190, 165, 1);
  transition: color ease-in 0.2s
}

.nav-0 a.btn-cart:hover,
.nav-1 a.btn-cart:active,
.nav-1 a.btn-cart:focus {
  color: rgba(255, 255, 255, 1)
}

.nav-0 .showitemcount.badge {
  font-size: 0.7rem;
  padding: 0rem 0.25rem;
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.nav-0 .showitemcount.translate-middle {
  transform: translate(-50%, -70%) !important;
}

.nav-0 .showitemcount.rounded-pill {
  border-radius: 5rem !important;
}

@media (min-width: 992px) {
  /*.nav-0 .navbar-toggler {display:flex !important;}*/
}

/* NAV 1 */
.nav-1.navbar {
  padding: 0rem 0rem;
}

.nav-1.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(35, 40, 45, 1) !important;
}

@media (min-width: 0px) {
  .nav-1.navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .nav-1.navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .nav-1.navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .nav-1.navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .nav-1.navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .nav-1.navbar-expand-sm .navbar-toggler {
    display: none;
  }

  .nav-1.navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .nav-1.navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }

  .nav-1.navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }

  .nav-1 .btn-lang,
  .nav-2 .btn-lang {
    color: var(--text-light-100);
    background-color: transparent;
    border: 1px solid rgba(92, 106, 118, 1);
    margin-right: 0rem;
  }

  .nav-2 .btn-lang {
    margin-right: 0rem;
  }

  .nav-1 .btn-lang:hover,
  .nav-1 .btn-lang.active,
  .nav-2 .btn-lang:hover,
  .nav-2 .btn-lang.active {
    color: rgba(245, 156, 0, 1);
    border: 1px solid rgba(245, 156, 0, 1);
  }

  .nav-1 .btn-lang:hover,
  .nav-2 .btn-lang:hover {
    background-color: rgba(245, 156, 0, 0.4);
  }

  .nav-1 .dropdown-menu {
    border-radius: 0rem;
    background-color: rgba(35, 40, 45, 1);
  }

  .nav-1 .dropdown-item {
    color: var(--text-light-100);
  }

  .nav-1 .dropdown-divider {
    border-top-color: var(--text-light-100);
    border-top-width: 3px;
  }

  .nav-1 .nav-link {
    font-size: 1.1rem;
  }

  .nav-1 a.btn-cart {
    color: rgba(199, 190, 165, 1);
    transition: color ease-in 0.2s
  }

  .nav-1 a.btn-cart:hover,
  .nav-1 a.btn-cart:active,
  .nav-1 a.btn-cart:focus {
    color: rgba(255, 255, 255, 1)
  }

  .nav-1 .showitemcount.badge {
    font-size: 0.7rem;
    padding: 0rem 0.25rem;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .nav-1 .showitemcount.translate-middle {
    transform: translate(-50%, -70%) !important;
  }

  .nav-1 .showitemcount.rounded-pill {
    border-radius: 5rem !important;
  }
}

/* NAV 2 */
.nav-2.fixed-top {
  position: fixed;
  top: 52px;
  right: 0;
  left: 0;
  z-index: 1029;
  line-height: 0px;
}

.nav-2.bg-dark {
  background-color: rgba(50, 57, 65, 1) !important;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0);
}

.nav-2.navbar {
  line-height: 1.75rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.nav-2 .dropdown-menu {
  border-radius: 0rem;
  background-color: rgba(50, 57, 65, 1);
  border: none;
}

.nav-2 .dropdown-item {
  color: var(--text-light-100)
}

.nav-2 .dropdown-item:focus,
.dropdown-item:hover {
  color: rgba(245, 156, 0, 1);
  background-color: transparent;
}

.nav-2 .nav-link {
  font-size: 1.1rem;
}

.nav-2.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  width: max-content;
}

.nav-2 .navbar-nav {
  --bs-nav-link-padding-y: 0.5rem;
}

.nav-2.navbar-expand-lg .navbar-nav button.nav-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* set all active links */
.nav-item.active .nav-link,
.current-category-ancestor .nav-link
.nav-2 .nav-item.active .nav-link,
.nav-2 .current-category-ancestor .nav-link {
  color: var(--color-hover) !important;
}

/*.nav-2 .nav-link { border: 1px solid rgba(92,106,118,1); }*/


/* NAV 3 */
.nav-3.bg-dark {
  background-color: rgba(58, 66, 74, 1) !important;
  /*rgba(50,57,65,1) rgba(67,77,86,1) */
}

.nav-3.navbar {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.nav-3 .dropdown-menu {
  border-radius: 0rem;
  background-color: rgba(50, 57, 65, 1);
  border: none;
}

.nav-3 .dropdown-item {
  color: var(--text-light-100)
}

.nav-3 .dropdown-item:focus,
.dropdown-item:hover {
  color: rgba(245, 156, 0, 1);
  background-color: transparent;
}

.nav-3 .nav-link {
  font-size: 1.1rem;
}

.nav-3.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  width: max-content;
}

.nav-3 .navbar-nav {
  --bs-nav-link-padding-y: 0.5rem;
}

.nav-3.navbar-expand-lg .navbar-nav button.nav-link {
  font-size: 1.1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.nav-3 .nav-item.active .nav-link {
  color: rgba(245, 156, 0, 1) !important;
}

/*.nav-2 .nav-link { border: 1px solid rgba(92,106,118,1); }*/
.nav-3 .navbar-collapse {
  flex-basis: inherit;
}

.nav-toggler-top {
  margin-top: 52px;
}

.subnav-toggler {
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  line-height: 1.6rem;
  border: 0px none rgba(255, 255, 255, 0.5);
  transition: background-color ease 0.3s;
  text-transform: uppercase;
}

@media(min-width:0px) {
  .nav-3.fixed-top {
    line-height: 1.5rem;
    position: fixed;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 1028;
  }

}

@media (min-width: 992px) {
  .nav-3.fixed-top {
    position: fixed;
    top: 100px;
    right: 0;
    left: 0;
    z-index: 1028;
  }
}

/*SIDE BAR NAV */
#sideNav.offcanvas {
  color: var(--text-light-100);
  background-color: var(--bg-offcanvas-dark)
}

#sideNav.offcanvas.offcanvas-end {
  width: inherit;
  min-width: 90%;
}

/* .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(92,106,118,1)'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat; 
} */

#sideNav .dropdown-menu {
  color: var(--text-light-100);
  padding-top: 0rem;
  padding-bottom: 1rem;
  position: relative !important;
  transform: translate3d(0px, 0px, 0px) !important;
  background-color: inherit;
  transition: visibility ease-in 1s !important;
  visibility: hidden !important;
  border: none;
}

#sideNav a.dropdown-item {
  color: var(--text-light-100);
}

#sideNav a.dropdown-item:hover,
#sideNav a.dropdown-item.active {
  color: rgba(245, 156, 0, 1);
}

#sideNav .nav-link.active.dropdown-toggle.show:after {
  border-top: 0em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

#sideNav .dropdown-menu.show {
  visibility: visible !important;
  transition: visibility ease-in 1s !important;
}

#sideSubNav.offcanvas {
  color: var(--text-light-100);
  background-color: rgba(35, 40, 45, 1);
}

@media (min-width:0px) {

  .wpe-box-alert,
  .wpe-box-download,
  .wpe-box-note,
  .wpe-box-error {
    font-size: 0.9em !important;
  }

  .wpe-box-alert .btn,
  .wpe-box-download .btn {
    margin-bottom: 0.25rem;
  }

  code {
    color: var(--color-code) !important;
    font-size: 1em !important;
  }
}

@media (min-width: 992px) {

  /* .wpe-box-alert p, .wpe-box-download p, .wpe-box-note p, .wpe-box-error p {font-size:0.9em !important;} */
  code {
    color: var(--color-code) !important;
    font-size: 0.9em !important;
  }
}

/* Footer */
footer.footer {
  color: var(--text-light-100);
}

footer .bg-yb {
  background-color: rgba(35, 40, 45, 1)
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1)
}

.top-button {
  background-color: rgba(35, 40, 45, 1);
  transition: background-color ease 0.3s;
  border-color: rgba(255, 255, 255, 0.2);
}

.top-button:hover,
.top-button:active,
.top-button:focus {
  background-color: rgba(71, 81, 91, 1);
  border-color: rgba(255, 255, 255, 0.6);
}

/*##########################
######## PAGES & POSTS
############################*/
@media(min-width: 0px) {
  #content.site-content {
    padding-top: 0px;
    padding-bottom: 3rem;
    margin-top: 0px
  }
}

@media(min-width:922px) {
  #content.site-content {
    padding-top: 4rem;
  }
}


#content :is(h2.blog-post-title) {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border-bottom: none;
}

#content :is(h2.blog-post-title a) {
  color: var(--text-dark-80);
  transition: color 0.3s ease-out;
}

#content :is(h2.blog-post-title a:hover) {
  color: var(--color-hover);
  transition: color 0.3s ease-out;
}

.offers .card-body {
  min-height: 10rem;
  height: inherit;
}

#content.post :is(h2, h3, h4, h5, h6) {
  color: rgba(93, 107, 119, 0.8);
  font-family: "Roboto-Condensed", sans-serif;
  letter-spacing: normal;
  text-transform: uppercase;
}

#content.post :not(.rmp-widgets-container) :is(h2):not(.comment-title):not(#reply-title) {
  font-family: "Silkscreen", Arial, Helvetica, sans-serif;
  letter-spacing: -0.15em;
  font-size: 1.6em;
  font-weight: 500;
  border-bottom: rgba(93, 107, 119, 0.8) solid 1px;
  margin-bottom: 1.3rem;
  margin-top: 4rem;
}

#content.post h3 {
  font-size: 1.2em;
  margin-top: 4rem;
}

#content.post li> :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 0.25rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

#content.post li a {
  color: var(--color-a-box);
  transition: color 0.3s ease-in;
}

#content.post li a:hover {
  color: var(--color-hover);
}

small.text-muted {
  font-size: 0.7em;
  color: rgba(var(--text-dark-40))
}

.bg-pinned {
  background-color: var(--text-light-100) !important;
}

/*rgba(35,40,45,1); border-radius:0px; */


@media (min-width: 0px) {
  .card-img-left img {
    object-fit: cover;
  }

  .offers .card {
    margin-bottom: 2rem;
  }

  .b-morelines_section_wrapper .js-morelines_section_wrapper {
    max-width: inherit !important;
  }

  .top-artists img {
    margin-bottom: 1rem;
  }

  .top-artists .row {
    margin-bottom: 3rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  #msg.msg-mebershipplans {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 99%;
    min-height: 4rem;
    transform: translate(-50%, -50%);
    padding: 1rem;
    z-index: 99;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    display: none;
  }

}

@media (min-width: 922px) {
  .offers .card {
    margin-bottom: 0rem;
  }

  .top-artists img {
    margin-bottom: 0rem;
  }

  .top-artists .row {
    margin-bottom: 2rem;
  }

  #msg.msg-mebershipplans {
    width: 40%;
  }
}

@media (min-width: 1400px) {
  .card-img-left img {
    object-fit: fill;
  }
}

.pages .content-area h1 {
  margin-bottom: 3rem;
}

.pages .content-area {
  background-color: rgba(255, 255, 255, 1);
  margin-bottom: 5rem;
}

.pages .post-thumbnail img {
  border-radius: 0px !important;
}


@media(min-width:0px) {
  .pages .content-area .entry-content {
    padding: 1rem;
    min-height: 100vh;
  }

}

@media (min-width: 992px) {
  .pages .content-area .entry-content {
    padding: 1rem;
  }
}

/*CUSTOMIZE BOXES */
.wpe-box {
  font-size: 1em;
  font-weight: 400 !important;
}

.wpe-box h2 {
  font-family: "Roboto-Condensed", sans-serif !important;
  letter-spacing: normal !important;
}

.wpe-box,
.fluid-width-video-wrapper {
  border-radius: 6px;
  overflow: hidden;
}

.wpe-box-note,
.wpe-box-note p,
.wpe-box-note ul,
.wpe-box-note ol {
  font-weight: 500 !important;
  color: #636363
}

.wpe-box-note p {
  margin-bottom: 0.7em
}

.wpe-box-note {
  background-color: #D6D6D6;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  margin-bottom: 1rem;
}

.wpe-box-note hr {
  border-top-color: #272b33;
  border-right-color: #272b33;
  border-bottom-color: #272b33;
  border-left-color: #272b33;
  border-top-style: dotted;
  border-right-style: dotted;
  border-bottom-style: dotted;
  border-left-style: dotted;
}

.wpe-box-note h1,
.wpe-box-note h2,
.wpe-box-note h3 {
  color: var(--text-dark-40) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.5rem !important;
  border: none;
  background-color: transparent;
  border-bottom: none !important;
}

.wpe-box-note table thead h1,
.wpe-box-note table thead h2,
.wpe-box-note table thead h3,
.wpe-box-note table thead h4,
.wpe-box-note table thead h5,
.wpe-box-note table th h1,
.wpe-box-note table th h2,
.wpe-box-note table th h3,
.wpe-box-note table th h4,
.wpe-box-note table th h5 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wpe-box-note ul li {
  list-style: square;
}

.wpe-box-note h2 {
  font-size: 1.3em !important;
  background-color: transparent;
  text-transform: uppercase;
  font-weight: 700
}

.wpe-box-note h3 {
  font-size: 1.2em !important;
  text-transform: uppercase;
  font-weight: 700
}

/*enlighter inside gray box */
/*.wpe-box-note .enlighter-t-atomic {border-radius:3px}*/
.wpe-box-note .enlighter {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.wpe-box-note .enlighter div {
  padding-left: 0px;
}

.wpe-box-note .enlighter-t-atomic {
  margin-bottom: 0px;
  margin-top: 1em
}

.wpe-box-note .enlighter-toolbar {
  display: none !important
}

.wpe-box-note .enlighter-default:hover .enlighter-toolbar {
  display: block !important;
  opacity: 0.8
}

.wpe-box-note .enlighter-linenumbers div.enlighter>div::before {
  display: none;
  width: 0px;
  padding-right: 0px;
  padding-left: 0px;
  content: ""
}

.wpe-box-error {
  font-weight: 500 !important;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  background-color: #235863;
  color: #88b3bb;
}

.wpe-box-error h1,
.wpe-box-error h2,
.wpe-box-error h3,
.wpe-box-error h4,
.wpe-box-error ul,
.wpe-box-error ol,
.wpe-box-error p {
  color: #88b3bb !important;
  border: none !important;
  border-radius: none;
}

.wpe-box-error h1,
.wpe-box-error h2,
.wpe-box-error h3,
.wpe-box-error h4 {
  font-family: "Roboto-Condensed", sans-serif !important;
  letter-spacing: normal !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.wpe-box-error h2 {
  font-size: 1.4em !important;
  font-weight: 700 !important;
}

.wpe-box-error a,
.wpe-box-error a:visited {
  color: #E0ECED;
  font-weight: 400;
}

.wpe-box-error a:hover,
.wpe-box-error a:active,
.wpe-box-error a:focus {
  color: #a18036
}

.wpe-box-alert,
.wpe-box-download {
  background-color: #272b33;
  border: 1px none #0080C0;
  color: #5c6a76;
  width: 100%;
  left: 33%;
  text-align: center;
}

.wpe-box-alert ul,
.wpe-box-download ul {
  padding: 0px;
}

.wpe-box-alert li,
.wpe-box-download li {
  list-style-type: none !important;
}

.wpe-box-alert li:before,
.wpe-box-download li:before {
  content: " ";
  color: #5c6a76 !important;
  font-size: 1.2em;
  background-color: #5c6a76;
  display: inline-block;
  height: 7px;
  width: 7px;
  margin-right: 4px;
  margin-left: 4px;
  margin-bottom: 1px;
}

.wpe-box-alert hr,
.wpe-box-download hr {
  border-bottom-width: 1px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: solid;
  border-left-style: none;
  border-bottom-color: #5c6a76;
}

.wpe-box-alert h1,
.wpe-box-alert h2,
.wpe-box-alert h3,
.wpe-box-alert h4,
.wpe-box-alert h5,
.wpe-box-download h1,
.wpe-box-download h2,
.wpe-box-download h3,
.wpe-box-download h4,
.wpe-box-download h5 {
  color: #5c6a76;
  font-weight: bold;
  font-size: 1.4em;
}

.wpe-box-alert h3,
.wpe-box-download h3 {
  color: #5c6a76;
  font-size: 1.5em !important;
  line-height: 1.5em !important;
  text-transform: uppercase;
}

.wpe-box-alert .btn-premiumplans,
.wpe-box-download .btn-premiumplans {
  margin-top: 0rem;
  margin-bottom: 0.25rem;
}

.wpe-box-alert,
.wpe-box-download {
  margin-bottom: 12px;
}


/*################
### mScrollbar ###
##################*/
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(92, 106, 118, 0.4)
}

.mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(92, 106, 118, 1) !important;
}

/* #################
###### BLOG COMMON STYLES 
####################*/
#blogTitle {
  display: none
}

.tags-links a.text-bg-secondary {
  color: rgba(0, 0, 0, 0.4) !important;
  font-weight: 400;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 0px;
  margin-top: 0px;
  display: inline-block;
  padding-bottom: 4px;
  transition: background-color 0.5s ease;
}

.tags-links a:hover,
.tags-links a:active,
.tags-links a:focus {
  background-color: rgba(204, 204, 204, 1) !important;
  color: #666;
}

.category-badge {
  display: none
}

/* single pages */
.page-header h1 {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .archive-description {
  display: none
}

.bgwhite {
  background-color: rgba(255, 255, 255, 1);
}

/* PREMIUM MEBRSHIP */
.btn.btn-premiumplans {
  color: var(--label-btn-premium-text-color) !important;
  margin-bottom: 0.25rem;
  margin-left: 0.5rem;
  border-radius: 0px;
  background-color: var(--label-btn-premium-color);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transition: background-color 0.5s ease !important;
}

.btn.btn-premiumplans:hover,
.btn.btn-premiumplans:active,
.btn.btn-premiumplans:focus {
  color: var(--label-btn-premium-text-color) !important;
  background-color: var(--label-btn-premium-color-hover);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}


.table-plans th:first-child,
.table-plans td:first-child {
  position: sticky !important;
  left: 0;
  z-index: 2;
  background: #fff;
}

.table-plans thead th {
  position: sticky !important;
  top: 0;
  z-index: 3;
  background: #f8f9fa;
}

.table-plans thead th:first-child {
  z-index: 4;
}

@media (max-width: 768px) {

  .table-plans th:first-child,
  .table-plans td:first-child {
    min-width: 120px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    /* Schrift verkleinern */
  }
}


@media(min-width:0px) {
  .btn-premium-flag {
    color: rgba(26, 51, 62, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    background-color: var(--label-btn-premium-color);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .btn-premium-flag:hover,
  .btn-premium-flag:active,
  .btn-premium-flag:focus {
    color: rgba(26, 51, 62, 0.8);
    background-color: var(--label-btn-premium-color-hover);
  }
}

@media(min-width:992px) {
  .btn-premium-flag {
    font-size: 1.3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.a-top-right {
  position: absolute;
  top: 0rem;
  right: 0rem;
}

section.paywall {
  margin-top: 1rem;
  border-radius: 0.5rem;
}

section.paywall.locked {
  padding: 2rem;
  height: 20rem;
}

section.paywall hr {
  margin-bottom: 2rem;
}


.premiumfree .paywall .premium-content {
  font-family: "Roboto-Condensed", sans-serif !important;
  color: rgb(164, 231, 153) !important;
  letter-spacing: normal !important;
  border-color: rgb(164, 231, 153);
}

.btn-separator-premium {
  color: rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.btn-separator-premium:hover,
.btn-separator-premium:active,
.btn-separator-premium:focus {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgb(138, 223, 166);
  border: 1px solid rgba(0, 0, 0, 0.7);
}

.separator-premium {
  display: none;
}

h2.separator-premium {
  color: rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 4rem;
  padding-top: 1rem;
  margin-bottom: -2rem;
}

h2.separator-premium:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 1px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.3);
}

.paywall.unlocked {
  font-size: 1.8rem;
}

.paywall.unlocked .free-premium-content {
  color: var(--free-premium-color-primary);
  text-align: center;
  border-bottom: var(--free-premium-color-primary) solid 3px;
  border-top: var(--free-premium-color-primary) solid 3px;
}

.paywall .premium-content {
  color: var(--premium-color-primary);
  text-align: center;
  border-bottom: var(--premium-color-primary) solid 3px;
  border-top: var(--premium-color-primary) solid 3px;
}

.premium-separator.arrows {
  color: rgba(0, 0, 0, 0.4);
  margin-left: auto;
  margin-right: auto;
  opacity: 0.3;
  transition: opacity ease-in 0.2s;
  cursor: pointer
}

.premium-separator.arrows:hover {
  opacity: 0.9
}

.premium-separator.arrows p:nth-child(1) {
  color: rgba(0, 0, 0, 0.4);
  font-size: 8rem;
  margin-top: -0.5em;
  margin-bottom: -0.6em;
}

.premium-separator.arrows p:nth-child(2) {
  color: rgba(0, 0, 0, 0.35);
  font-size: 6rem;
  margin-bottom: -0.5em;
}

.premium-separator.arrows p:nth-child(3) {
  color: rgba(0, 0, 0, 0.25);
  font-size: 4rem;
  margin-bottom: 0rem;
}

h2.separator-free {
  display: none;
  color: rgb(164, 231, 153) !important;
  font-weight: 400;
  text-align: center;
  margin-top: 4rem;
  padding-top: 1rem;
  margin-bottom: -2rem;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: rgb(164, 231, 153) !important;
}

h2.separator-free:before {
  display: none;
  content: ' ';
  display: block;
  width: 100%;
  height: 1px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: rgb(164, 231, 153);
}


@keyframes shine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.grind-effect-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

.grind-effect {
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgb(200, 190, 162);
  padding: 3rem;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.grind-effect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(236, 211, 148, 0.1) 25%, rgba(255, 228, 159, 0.5) 50%, rgba(255, 240, 203, 0.1) 75%);
  animation: shine 2.5s infinite;
  background-size: 200% 100%;
  z-index: 1;
}

.grind-effect.premiumfree {
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgb(203, 215, 186);
  padding: 3rem;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.grind-effect.premiumfree:after {
  background: linear-gradient(90deg, rgba(212, 255, 152, 0.1) 25%, rgba(196, 255, 78, 0.5) 50%, rgba(226, 255, 185, 0.1) 75%);
  animation: shine 2.5s infinite;
  background-size: 200% 100%;
  z-index: 1;
}

/* new button */
.paywall .btn-separator-premium {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.paywall .btn-separator-premium.free {
  color: rgb(164, 231, 153)
}

.blurred-content-wrapper {
  display: block;
  position: relative;
  padding-bottom: 2rem;
}

.blurred-content {
  filter: blur(2px);
  overflow: hidden;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
  max-height: 20rem;
  left: 5%;
  max-width: 90%;
}

.blurred-content::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.geofooter small {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.4)
}

.geofooter small a {
  color: rgba(0, 0, 0, 0.4);
  transition: color 0.5s ease;
}

.geofooter small a:hover {
  color: rgba(0, 0, 0, 0.8)
}

@media(min-width:0px) {
  .paywall .btn-separator-premium {
    font-family: "Roboto-Condensed", sans-serif !important;
    letter-spacing: normal !important;
  }

  section.paywall.unlocked {
    font-family: "Roboto-Condensed", sans-serif !important;
    letter-spacing: normal !important;
  }

  .paywall .btn-separator-premium h5 {
    color: rgb(255, 255, 255) !important;
    text-transform: uppercase;
    font-size: 1.3em;
    text-align: center;
  }

  .btn-separator-premium p {
    text-align: center;
  }
}

/* ##########################
/* COMMON TABLE STYLES 
############################# */
thead h1,
th h1,
thead h2,
th h2,
thead h3,
th h3,
thead h4,
th h4,
thead h5,
th h5 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

/* New media query */
@media (min-width: 992px) {}


/* ARTICLES */

/*
@media(min-width:0px) {
  #primary ul.content.no-bullets, #primary ol.content.no-bullets{
    list-style: none !important;
    margin-left: 0rem !important;
    padding-left: 0rem !important;
  }

  #primary ul.content.no-bullets,#primary ol.content.no-bullets {
    position: relative;
    padding-left: 20px; 
  }

  #primary ul.content.no-bullets > li, #primary ol.content.no-bullets > li {
    color:var(--text-light-100);
    position: relative;
    padding-left: 20px; 
  }
  #primary ul.content.no-bullets > li::before, #primary ol.content.no-bullets > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px; 
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(92,106,118,1)" class="bi bi-caret-right" viewBox="0 0 16 16"><path d="M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753"/></svg>') no-repeat center center;
    background-size: contain; 
    transition: background 0.3s ease; 
  }

  #primary ul.content.no-bullets > li:hover::before, #primary ol.content.no-bullets > li:hover::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(245, 156, 0)" class="bi bi-caret-right" viewBox="0 0 16 16"><path d="M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753"/></svg>') no-repeat center center;
    background-size: contain; 
  }
} */

@media (min-width: 0px) {

  /* Entferne Standard-Bullets und setze Basisstyling */
  #primary ul.content.no-bullets,
  #primary ol.content.no-bullets,
  #primary ul.content.no-bullets ul,
  #primary ol.content.no-bullets ol {
    list-style: none !important;
    margin: 0;
    padding: 0;
  }

  /* Hauptliste - Styling */
  #primary ul.content.no-bullets>li,
  #primary ol.content.no-bullets>li {
    color: var(--text-light-100);
    /* Optional: Textfarbe */
    position: relative;
    padding-left: 30px;
    /* Platz für SVG */
  }

  /* Hauptliste - SVG-Bullet oben platzieren */
  #primary ul.content.no-bullets>li::before,
  #primary ol.content.no-bullets>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    /* Oben ausgerichtet */
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(92,106,118,1)" class="bi bi-caret-right" viewBox="0 0 16 16"><path d="M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753"/></svg>') no-repeat center center;
    background-size: contain;
  }

  /* Hover-Effekt für Hauptliste */
  #primary ul.content.no-bullets>li:hover::before,
  #primary ol.content.no-bullets>li:hover::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(245, 156, 0)" class="bi bi-caret-right" viewBox="0 0 16 16"><path d="M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753"/></svg>') no-repeat center center;
    background-size: contain;
  }

  /* Sublisten - Basisstyling */
  #primary ul.content.no-bullets>li>ul,
  #primary ol.content.no-bullets>li>ol {
    margin: 0;
    padding-left: 20px;
    /* Einrückung für Sublisten */
  }

  #primary ul.content.no-bullets>li>ul>li,
  #primary ol.content.no-bullets>li>ol>li {
    position: relative;
    padding-left: 25px;
    /* Platz für das SVG */
  }

  /* Sublisten - SVG-Bullet oben platzieren */
  #primary ul.content.no-bullets>li>ul>li::before,
  #primary ol.content.no-bullets>li>ol>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    /* Oben ausgerichtet */
    width: 12px;
    height: 12px;
    padding-top: 0.5em;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="rgba(92,106,118,1)" class="bi bi-caret-right" viewBox="0 0 16 16"><path d="M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753"/></svg>') no-repeat center center;
    background-size: contain;
  }

  /* Hover-Effekt für Sublisten */
  #primary ul.content.no-bullets>li>ul>li:hover::before,
  #primary ol.content.no-bullets>li>ol>li:hover::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="rgb(245, 156, 0)" class="bi bi-caret-right" viewBox="0 0 16 16"><path d="M6 12.796V3.204L11.481 8zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753"/></svg>') no-repeat center center;
    background-size: contain;
  }
}


@media(min-width:992px) {

  #primary ul.content.no-bullets,
  #primary ol.content.no-bullets {
    margin-left: 0rem !important;
    padding-left: 4rem !important;
    /* Remove default padding */
  }
}

/* SOUNDCLOUD PLAYER */
@media (min-width: 0px) {
  #primary .soundcloud_noconsent {
    background-color: rgba(204, 204, 204, 1);
    padding: 2rem;
    border-radius: 0.5rem;
  }

  #primary .soc-logo {
    font-size: 2rem;
    text-align: center;
  }
}

@media (min-width: 992px) {
  #primary .soc-logo {
    font-size: 4rem;
  }
}

ul.pagination {
  list-style-type: none !important;
}



/*PREMIUM LOGIN */
#premiumLogin th {
  text-align: center
}

#premiumLogin .col-left {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(0, 0, 0, 0.2);
}

@media(min-width:0px) {
  #premiumLogin .col-right {
    margin-left: 0rem;
  }

  #premiumLoginModal .modal-content {
    border-radius: 0;
    /* Optional: Remove border radius for a sharper look */
  }
}

@media (min-width: 992px) {
  #premiumLogin .col-right {
    margin-left: 1rem;
  }
}


/* PRICING */
.countdown {
  font-size: 0.8rem;
}

#primary .countdown h4,
.plans .countdown h4 {
  font-size: 1.3em;
}

#primary .countdown .row,
.plans .countdown .row {
  padding-left: 0.5rem;
}

#primary .countdown .row>*,
.plans .countdown .row>* {
  padding-left: 0rem;
}

#primary .membership-pricing,
#primary .membership-discount,
.plans .membership-pricing,
.plans .membership-discount {
  font-size: 1.3rem !important;
  font-weight: bolder;
  font-size: 1rem;
}

#primary .membership-pricing.stroke,
.plans .membership-pricing.stroke {
  font-size: 0.8em !important;
  font-weight: 300;
  padding-right: 1rem;
}

.countdown .days-nav,
.countdown .hours-nav,
.countdown .min-nav,
.countdown .sec-nav {
  display: none
}


/* CUSTOM BUTTONS */
.button-dark {
  color: #fff;
  background-color: #16334E;
  border-color: #000000;
}

.button-dark:focus,
.button-dark.focus {
  color: #fff;
  background-color: #0F2335;
  border-color: #122b40;
}

.button-dark:hover {
  color: #fff;
  background-color: #1B3F5F;
  border-color: #102436;
}

.button-dark:active,
.button-dark.active,
.open>.dropdown-toggle.button-dark {
  color: #fff;
  background-color: #16334E;
  border-color: #000000;
}

.button-dark:active:hover,
.button-dark.active:hover,
.open>.dropdown-toggle.button-dark:hover,
.button-dark:active:focus,
.button-dark.active:focus,
.open>.dropdown-toggle.button-dark:focus,
.button-dark:active.focus,
.button-dark.active.focus,
.open>.dropdown-toggle.button-dark.focus {
  color: #fff;
  background-color: #0F2335;
  border-color: #122b40;
}

.button-dark:active,
.button-dark.active,
.open>.dropdown-toggle.button-dark {
  background-image: none;
}

.button-dark.disabled:hover,
.button-dark[disabled]:hover,
fieldset[disabled] .button-dark:hover,
.button-dark.disabled:focus,
.button-dark[disabled]:focus,
fieldset[disabled] .button-dark:focus,
.button-dark.disabled.focus,
.button-dark[disabled].focus,
fieldset[disabled] .button-dark.focus {
  background-color: #666666;
  border-color: #333333;
}


/*####################### FOOTER ###################### */
#cookie-consent-modal .collapse a {
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/*################### ------ MAIN PAGE CODE MAYBE NOT USED FOR BLOG ------------------------ ######################### */


/*##########################
######## SLIDER
############################*/

.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.9)
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: auto;
  margin-bottom: auto;
  height: 3rem;
  width: 2rem;
  transition: width ease-out 0.1s, background-color ease-out 0.2s, color ease-out 0.2s;
}

.carousel-control-next {
  border-radius: 0.25rem 0rem 0rem 0.25rem;
}

.carousel-control-prev {
  border-radius: 0rem 0.25rem 0.25rem 0rem;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: rgba(255, 255, 255, 0.9);
  width: 4rem;
  transition: width ease-in 0.2s, background-color ease-in 0.4s, color ease-in 0.4s;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  transition: all ease-out 0.5s
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='white' stroke-width='1' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='white' stroke-width='1' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='black' stroke-width='1' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='black' stroke-width='1' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

@media (min-width: 0px) {
  #slider .carousel-caption {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: left;
    padding: 1rem;
    position: absolute;
    left: inherit;
    top: inherit;
    bottom: 0;
    left: 0;
    right: inherit;
    width: 100%;
    height: 70%;
  }

  #slider .carousel-item {
    height: 100vh;
  }

  #slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: 0px 0px;
  }

  #slider .item-name.svg {
    position: absolute;
    height: 6rem;
    width: 90%;
    top: 2rem;
    left: 1rem;
    fill: rgba(255, 255, 255, 1);
    transform-origin: left top;
    transition: width ease-in 0.5s
  }
}

@media (min-width: 768px) {
  #slider .carousel-caption {
    padding: 3rem;
    height: 50%;
  }

  #slider .item-name.svg {
    width: 60%;
  }
}

@media (min-width: 992px) {
  #slider .carousel-caption {
    left: inherit;
    top: 0;
    bottom: inherit;
    left: inherit;
    right: 0;
    width: 40%;
    height: 100%;
  }

  #slider .carousel-item {
    height: 30%;
  }

  #slider .item-name.svg {
    width: 33.33333333%;
  }
}

@media (min-width: 1200px) {
  #slider .carousel-item {
    height: 600px;
  }
}

/* 
######################
###### VIBRACART ##########
######################
*/
div.vibracart {
  border: none;
  font-size: 1.2rem;
  font-family: "Roboto-Condensed", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  letter-spacing: normal !important;
}

.pointer {
  cursor: pointer;
}

div.vibracart_terms {
  overflow: visible;
  padding: 0rem;
  margin: 0 0 0 0;
  background-color: transparent;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  height: auto !important;
}

div.vibracart_coupon {
  overflow: visible;
  padding: 8px 0 0 0;
  margin: 0 0 0 0;
  background-color: transparent;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 2rem;
}

p.vibracart_itemdelete {
  float: left;
  text-align: center;
  cursor: pointer;
  padding: 0;
  color: rgba(0, 0, 0, 0.2) !important;
  font-size: 2rem;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 2rem;
}

td.vibracart_itemdelete {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  vertical-align: middle;
  width: 10px;
  border: none;
  background-color: transparent;
}

tr.vibracart_item_odd {
  background-color: rgba(255, 255, 255, 1);
  border-bottom-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-bottom-color: #dddddd;
}

tr.vibracart_item_even {
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-bottom-color: #dddddd;
}

/* Item description */
td.vibracart_itemdescription {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 5px;
  padding-right: 0px;
  vertical-align: top;
  border: none;
  background-color: transparent;
}

p.vibracart_itemdescription {
  float: left;
  text-align: left;
  color: black;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: normal;
  padding: 0;
}

/* item id*/
p.vibracart_itemid {
  float: left;
  font-size: 0.9rem;
  color: #9C9C9C;
  font-weight: normal;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  line-height: normal;
  padding: 0;
}

a.vibracart_itemid {
  float: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
  color: #9C9C9C;
  font-weight: normal;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  line-height: normal;
  padding: 0;
  text-decoration: underline;
  background-color: transparent;
  text-shadow: none;
}

/* Item price */
div.vibracart_itempriceclear {
  clear: both;
}

p.vibracart_itemprice {
  float: left;
  font-size: 0.9rem;
  color: black;
  font-weight: normal;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  line-height: normal;
  padding: 0;
}

/* Item total */
td.vibracart_itemtotal {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 5px;
  padding-right: 0px;
  text-align: right;
  vertical-align: middle;
  border: none;
  background-color: transparent;
}

p.vibracart_itemtotal {
  float: right;
  color: rgba(0, 0, 0, 0.8);
  text-align: right;
  line-height: normal;
  padding: 0;
  margin: 0 0 0 0;
}

/* Item quantity */
td.vibracart_itemquantity {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 5px;
  padding-right: 0px;
  vertical-align: middle;
  border: none;
  width: 2em;
  background-color: transparent;
}

p.vibracart_itemquantity {
  float: left;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

input.vibracart_itemquantity {
  color: #666;
  width: auto;
}

/*item image */
img.vibracart_itemimage {
  padding: 0;
  background-color: transparent;
  border: #bdbdbd solid 0px;
  width: 4rem;
  margin-top: 0;
  margin-right: 1rem;
  margin-bottom: 0;
  margin-left: 0;
}

div.y-wrapper-footer {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  background-color: #FFF;
  margin-bottom: -2px;
}


.btn-checkout {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(183, 172, 140, 1);
  border-color: rgba(141, 129, 88, 1);
}

.btn-checkout:hover,
.btn-checkout:active,
.btn-checkout:focus {
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(199, 190, 165, 1) !important;
  border-color: rgba(141, 129, 88, 1) !important;
}



@media (min-width: 0px) {
  div.vibracart_paypalcheckoutbutton {
    float: left
  }

  #vibracart_coupon .row {
    display: block;
    flex-wrap: inherit;
  }

  div.vibracart_footer {
    overflow: visible;
    margin: 0;
    background-color: rgba(35, 40, 45, 1);
    box-sizing: border-box;
    width: 100%;
    min-height: 64px !important;
    font-size: 1.2rem;
    left: 0px;
    padding: 0.5rem;
  }
}

@media (min-width: 768px) {
  div.vibracart_paypalcheckoutbutton {
    float: left
  }

  div.vibracart_total {
    text-align: right
  }

  ;
}

@media (min-width: 992px) {
  div.vibracart_paypalcheckoutbutton {
    float: left
  }

  #vibracart_coupon .row {
    display: flex;
    flex-wrap: wrap;
  }

  div.vibracart_footer {
    padding-top: 0.5rem;
    padding-right: 2rem;
    padding-bottom: 0.5rem;
    padding-left: 0px;
  }
}

@media (min-width: 1200px) {}

button.vibracart_paypalcheckoutbutton {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FF8C00), color-stop(1, #FF8C00));
  background: -moz-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: -webkit-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: -o-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: -ms-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: linear-gradient(to bottom, #FF8C00 5%, #FF8C00 100%);
  background-color: #FF8C00;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 0px;
  display: inline-block;
  cursor: pointer;
  color: #FFFFFF;
  font: normal normal bold 12px Arial, Helvetica, sans-serif;
  padding: 3px 8px;
  margin: 0 0 1px 0;
  text-decoration: none;
  border: solid #FF8C00 1px;
  outline: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

button.vibracart_paypalcheckoutbutton:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #FF8C00), color-stop(1, #FF8C00));
  background: -moz-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: -webkit-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: -o-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: -ms-linear-gradient(top, #FF8C00 5%, #FF8C00 100%);
  background: linear-gradient(to bottom, #FF8C00 5%, #FF8C00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8C00', endColorstr='#FF8C00', GradientType=0);
  background-color: #FF8C00;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

button.vibracart_paypalcheckoutbutton:active {
  position: relative;
  top: 1px;
}

/*terms*/
span.vibracart_termslink,
a.vibracart_termslink {
  font-size: 1rem;
  font-family: inherit;
  font-weight: normal;
  background-color: transparent;
  text-shadow: none;
}

/*coupon*/
input.vibracart_coupontextbox {
  text-align: left;
  margin: 0px 0px 0px 5px;
  padding: 0px 0px 0px 3px;
  background-color: white;
  outline: none;
  display: inline;
  width: 10rem;
  line-height: 2rem;
}

/* Button from http://www.bestcssbuttongenerator.com */
button.vibracart_applybutton {
  border-radius: 0px;
}

/*button.vibracart_applybutton:hover {
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f5f5f5), color-stop(1, #f5f5f5));
  background:-moz-linear-gradient(top, #f5f5f5 5%, #f5f5f5 100%);
  background:-webkit-linear-gradient(top, #f5f5f5 5%, #f5f5f5 100%);
  background:-o-linear-gradient(top, #f5f5f5 5%, #f5f5f5 100%);
  background:-ms-linear-gradient(top, #f5f5f5 5%, #f5f5f5 100%);
  background:linear-gradient(to bottom, #f5f5f5 5%, #f5f5f5 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f5f5f5',GradientType=0);
  background-color:#f5f5f5;
}
button.vibracart_applybutton:active {
  position:relative;
  top:1px;
}*/
@media (min-width: 0px) {
  #yb-cart h1 {
    color: rgba(92, 106, 118, 1);
  }

  #yb-cart h2 {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  #cart #vibracart {
    height: 100% !important;
  }

  div.vibracart_footer .row {
    align-items: center;
  }

  div.vibracart_total {
    float: right;
    font-size: 2rem;
    color: rgba(92, 106, 118, 1);
    font-weight: bold;
    margin-top: 0;
    margin-right: rem;
    margin-bottom: 0;
    margin-left: rem;
    padding-top: 0rem;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  #vibracart_content {
    height: 100% !important;
  }

  /*calc(100vh-372px)*/
  div.vibracart_alert {
    position: absolute !important;
    top: 25%;
    left: 0;
    margin-top: 0px !important;
    visibility: visible !important;
    opacity: 0;
    display: none
  }

  p.vibracart_alerterror {
    font-family: inherit !important;
    font-size: 1.4rem;
    color: rgba(199, 190, 165, 1) !important;
  }

  #vibracart_content {
    background-size: 12rem !important;
    opacity: 0.5;
  }
}

@media (min-width: 1200px) {

  /*#vibracart{height:500px !important;}*/
  div.vibracart_total {
    float: right;
    display: table-cell;
    vertical-align: middle;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 0rem;
    padding-bottom: 1rem;
    margin-top: 0;
    margin-right: 7px;
    margin-bottom: 2rem;
    margin-left: 0;
    padding-right: rem;
    padding-bottom: 0;
    padding-left: rem;
  }
}

/* End of button */

/*CHECKOUTPAGE */
#checkoutpage .loading-container {
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0%;
  left: 0rem;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#checkoutpage .loading-container .loader {
  width: auto;
}

#checkoutpage .headline {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

#checkoutpage .border-left {
  min-height: calc(100vh - 20%);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(0, 0, 0, 0.2);
}

#checkoutpage .checkout-mask {
  margin-bottom: 3rem;
}

#checkoutpage .loading-container {
  display: flex;
}

#checkoutpage #vibracart {
  display: none
}

#checkoutpage #paypalform {
  display: none
}



.top-artists .row {
  margin-bottom: 2rem;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.top-artists .col-md-2,
.top-artists .col-md-10 {
  padding-bottom: 1rem;
}

.top-artists h3 {
  font-size: 1.4rem
}

.top-artists h4 {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6)
}

/* PLANS */
.plans .card-title {
  text-transform: uppercase;
}



/* COMMENTS */
#reply-title,
.comments-title {
  font-family: "Roboto-Condensed", Arial, Helvetica, sans-serif !important;
  font-size: 2em;
  letter-spacing: normal !important;
  margin-bottom: 1rem !important;
  margin-top: 4rem !important;
}

#reply-title::before {
  content: "\F24B";
  /* bi-chat-left-fill */
  font-family: "bootstrap-icons";
  font-size: 2rem;
  /* Icon size */
  color: inherit;
  /* Icon uses same color as title */
  margin-right: .5rem;
  /* vertical-align: 0.05em;  */
  display: inline-block;
}


p.allowed-html {
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.allowed-html li {
  color: var(--text-dark-40);
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  list-style: none;
}

@media(min-width: 0px) {
  .avatar {
    width: 2rem;
    display: none
  }
}

@media(min-width: 768px) {
  .avatar {
    width: 3rem;
    display: block
  }
}

@media(min-width: 922px) {
  .avatar {
    width: 4rem;
    display: block
  }
}

.comment-content {
  width: 100%;
  /* Make the comment body full width */
  margin-left: 0;
  /* Remove left margin */
  margin-right: 0;
  /* Remove right margin */
}

.comment-content .card {
  border: 2px solid #007bff;
  border-left: transparent 0px none;
}

.comment-content h3.author {
  font-size: .1.2em !important;
}

.comment-content h3.author small {
  font-size: 0.7em;
  font-weight: 300;
}

.comment-content .comment-meta {
  font-size: 0.7em;
}

.comment-list .depth-1.parent {
  margin-top: 2rem;
}

.comment-list ul.children {
  padding-left: 0.8rem;
}

/* .comment-list .btn-outline-primary{opacity:1; transition: opacity 0.5s ease !important;}
.comment-list .btn-outline-primary:hover{opacity:0.5; transition: opacity 0.5s ease !important;} */

.comment-list .btn-outline-primary {
  transition: filter 0.3s ease !important;
  /* Transition effect for filter */
}

.comment-list .btn-outline-primary:hover {
  filter: brightness(70%);
}






/* FAQ */
#faq .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='rgba(211,201,190,1)' stroke-width='1' fill='rgba(211,201,190,1)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='rgba(233,227,222,1)' stroke-width='1' fill='rgba(233,227,222,1)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-button {
  font-size: 1.1rem;
  color: rgba(211, 201, 190, 1);
  border-radius: 1.5rem;
  background-color: rgba(172, 145, 121, 1);
  box-shadow: none;
  padding: 0.75rem;
  padding-left: 2rem;
  border: none
}

#faq .accordion-button:hover {
  background-color: rgba(160, 131, 103, 1);
}

#faq .accordion-button:not(.collapsed) {
  color: rgba(233, 227, 222, 1);
}

#faq .accordion-item {
  margin-bottom: 0.5rem;
  border-top-right-radius: 12rem;
  border: none;
}

#faq .accordion-collapse {
  border-radius: 1.5rem;
}

#faq .accordion-collapse.show {
  background-color: rgba(172, 145, 121, 0.1);
}

#faq h3 {
  font-size: 1.3rem;
}

#faq .accordion-body {
  color: rgba(117, 98, 79, 1);
}

#faq .accordion a {
  color: rgba(64, 130, 183, 1);
  transition: color ease-in 0.2s;
}

#faq .accordion a:hover,
#faq .accordion a:active,
#faq .accordion a:focus {
  color: rgba(190, 214, 233, 1)
}

/*##########################
######## ITEMS PREVIEW
############################*/
@media (min-width: 0px) {
  .items .card {
    margin-bottom: 2rem;
  }

  .items .row {
    margin-bottom: 1rem;
  }

  .items .row.pricing,
  .items .row.buynow {
    justify-content: center;
    min-height: 85px;
    align-content: center;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-top-color: rgba(0, 0, 0, 0.4);
    border-right-color: rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(0, 0, 0, 0.4);
    border-left-color: rgba(0, 0, 0, 0.4);
  }

  .items .row.pricing p {
    margin-bottom: 0rem;
  }

  .items h2 {
    font-size: 1.6rem;
  }

  .items h3 {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
    margin-bottom: 0.25rem;
  }

  .items .card-title a.details {
    color: rgba(64, 130, 183, 1);
    display: block;
    text-align: right;
    font-size: 0.9rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    transition: color ease-in 0.1s
  }

  .items .card-title a.details:hover {
    color: rgba(190, 214, 233, 1);
  }

  .items a.btn-play {
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 2rem;
    right: 0.5rem;
    font-size: 5rem;
    transition: color ease-in 0.2s
  }

  .items a.btn-play:hover {
    color: rgba(255, 255, 255, 0.9);
  }

  .items .lbl-free-deal {
    font-size: 1.1rem;
    position: absolute;
    top: 0px;
    right: 0px;
    color: rgba(83, 119, 0, 1);
    background-color: rgba(240, 255, 204, 0.9);
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .items .card-body .t-right {
    display: flex;
    color: rgba(0, 0, 0, 0.4);
    justify-content: right;
    align-items: flex-end !important;
    font-weight: bold;
    font-size: 1.5rem;
    border-left-width: 1px;
    text-align: right;
    border-left-style: dotted;
    border-left-color: rgba(0, 0, 0, 0.4);
    min-height: 58px;
  }

  .items .card-body .t-right h3 {
    color: rgba(0, 0, 0, 0.8);
    font-size: inherit;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 0rem;
    margin-top: auto
  }

  .items .card-body .t-right .discount {
    display: flex;
    font-size: 0.8em;
    margin-bottom: 0rem;
  }

  .items .card-body .t-right,
  .items .card-body .t-left {
    align-items: center;
  }

  .items .card-text {
    padding-bottom: 1rem;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .items .card-text ul {
    list-style-type: square;
  }

  .items .card-body .btn.details {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(50, 57, 65, 1);
    color: rgba(92, 106, 118, 1);
    border-top-color: rgba(50, 57, 65, 0.1);
    border-right-color: rgba(50, 57, 65, 0.1);
    border-bottom-color: rgba(50, 57, 65, 0.1);
    border-left-color: rgba(50, 57, 65, 0.1);
  }

  .items .card-body .btn.details:hover {
    background-color: rgba(50, 57, 65, 0.8);
    color: rgba(175, 226, 108, 1);
    ;
  }

  /*.items .t-left, .items .t-right { padding-bottom:0.5rem; padding-top:0.5rem; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(0,0,0,0.4); }*/

  .items .row.buynow {
    border-bottom-style: none;
    padding-bottom: 0rem;
    min-height: inherit;
  }

  .items .row.buynow .t-right,
  .items .row.buynow .t-left {
    display: flex;
    justify-content: right;
    min-height: inherit;
    align-items: flex-end !important;
    font-size: inherit;
    border-left-style: none;
  }

  .items .row.buynow .t-left {
    justify-content: left;
  }

  .items .row.buynow .t-left .btn {
    margin-right: 0.15rem;
  }


  .items .countdown {
    font-size: 0.8rem;
  }

  .items .countdown h4 {
    font-size: 1rem;
    margin-bottom: 0rem;
  }

  .items .countdown .row {
    padding-left: 0.5rem;
    margin-bottom: 0rem;
  }

  .items .countdown .col-3,
  .items .countdown .col-12 {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }

  .items .countdown .col-3 {
    text-align: center;
  }

  .items .btn-icon {
    font-size: 1.2rem;
  }

  /*MODAL */
  #modalItemVideos .modal-content {
    background-color: rgba(255, 255, 255, 0);
  }

  #modalItemVideos .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  }

  #modalItemVideos .modal-header {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }
}

@media (min-width: 768px) {
  .items a.btn-play {
    top: 34.5rem;
    left: 1rem;
    font-size: 8rem;
  }

}

@media (min-width: 992px) {
  .items h2 {
    font-size: 1.3rem;
    margin-bottom: 0rem;
  }

  .items a.btn-play {
    top: 14rem;
    left: 0.5rem;
    font-size: 4rem;
  }
}

@media (min-width: 1200px) {
  .items h2 {
    font-size: 1.6rem;
  }

  .items a.btn-play {
    top: 17.5rem;
    left: 0.5rem;
  }
}

@media (min-width: 1400px) {
  .items a.btn-play {
    top: 20.5rem;
    left: 0.5rem;
    font-size: 5rem;
  }
}

.items h2 a {
  color: rgba(176, 165, 130, 1);
}

.items h2 a:hover {
  color: rgba(176, 165, 130, 0.6);
}

/*##########################
######## MODALS
############################*/
#cookie-consent-modal .form-switch {
  margin-bottom: 1rem;
}

#cookie-consent-modal .form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 10 10'%3e%3rect x='0' y='0' width='10' height='10'  fill='%23fff'/%3e%3c/svg%3e");
}

#cookie-consent-modal .modal-footer {
  justify-content: space-between;
}

/*########################## */
/*######## MEMBERS ######### */
/*########################## */
.modal-backdrop.custom-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important;
  /* Adjust the opacity as needed */
}

#modalLogin .modal-content {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.94)
}

#modalLogin .col-right {
  border: none;
}

#modalLogin .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(255,255,255,0.94)'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

@media (min-width: 0px) {

  /*#modalLogin .col-right {padding-left:inherit; }*/
  #modalLogin hr {
    opacity: 0.7;
    border-top: 3px solid;
  }

  #premiumLoginModal .modal-xl {
    margin: auto;
    /* Remove default margin */
  }

  #premiumLoginModal .modal-xl {
    /* top: 56px; Adjust this value based on your navbar height */
    /* height: calc(100% - 56px); Full height minus navbar height */
  }
}

@media (min-width: 992px) {
  #modalLogin .col-right {
    padding-left: 3rem;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  #premiumLoginModal .modal-xl {
    max-width: 66%;
    /* Full width */
    width: 66%;
    /* Ensure it takes full width */
    margin: auto;
    /* Remove default margin */
  }

  #premiumLoginModal .modal-xl {
    /* top: 112px; Adjust this value based on your navbar height */
    /* height: calc(100% - 112px); Full height minus navbar height */
  }
}

/*.row.forgot-pw > * {padding-left:0rem;}*/
.row.forgot-pw a {
  font-weight: bold;
}

/*##########################
######## JS Adjustments
############################*/

/* show nhide long text */
.excerpt {
  padding-bottom: 1rem
}

.excerpt p {
  margin-bottom: 0rem
}

.b-morelines_section_button {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  text-align: center;
  height: auto;
  line-height: :0.8rem;
  padding: 0.2rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  transition: background-color ease-in 0.2s
}

.b-morelines_section_button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.expandsection_button {
  font-size: 1.1rem;
  color: rgba(109, 148, 167, 0.7);
  background-color: rgba(217, 227, 232, 0.4);
  text-align: center;
  width: 4rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.3rem;
  margin-top: 1rem;
  transition: all ease-in 0.3s
}

.expandsection_button:hover {
  color: rgba(109, 148, 167, 1);
  background-color: rgba(217, 227, 232, 0.9);
}


/* ##################################
######## BOOTSTRAP ADJUSTMENTS
################################## */

.table-responsive table {
  white-space: nowrap;
}



/* ###########################
######## CK EDITOR ########
########################### */

.ck-editor__editable {
  min-height: 200px !important;
  /* Set the minimum height */
}