:root{
    --animation: all .3s;
    --slow-animation: all .4s;
    --animation-function: ease-in-out;
    --card-custom-border-radius: 1rem;
}

/* FONTS */

@font-face {
    font-family: "DM Sans";
    src: local("DM Sans Regular"), url("../webfonts/DMSans-Regular.woff2");
    font-display: swap;
}

@font-face {
    font-family: "DMSans Thin";
    src: local("DMSans Thin"), url("../webfonts/DMSans-Thin.woff2");
    font-display: swap;
}

@font-face {
    font-family: "DM Sans Light";
    src: local("DM Sans Light"), url("../webfonts/DMSans-Light.woff2");
    font-display: swap;
}

@font-face {
    font-family: "DM Sans Thick";
    src: local("DMSans Bold"), url("../webfonts/DMSans-Bold.woff2");
    font-display: swap;
}

@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}

/* TEXT SELECTION & SCROLLBARS */

::selection {
    background-color: var(--secondary_color);
    color: #fff;
}

/* Anastasia ist kein Fan.

::-webkit-scrollbar
    {width: 14px; height: 14px;}

::-webkit-scrollbar-track
    {background-color: var(--light_grey2);}

::-webkit-scrollbar-thumb
	{
	background-color: var(--primary_color);
    border-radius: 2px;
	border: 1px solid #93b34a;
	box-shadow: 0 0 2px 0 #93b34a;
	}

::-webkit-scrollbar-thumb:hover
	{background-color: #a4c753;}

*/

::-webkit-input-placeholder {
    color: #aaa;
    font-family: "DMSans Thin", serif;
}

::-moz-placeholder {
    color: #aaa;
    font-family: "DMSans Thin", serif;
}

:-ms-input-placeholder {
    color: #aaa;
    font-family: "DMSans Thin", serif;
}

::placeholder {
    color: #aaa;
    font-family: "DMSans Thin", serif;
}


/* GLOBAL CLASSES */

nav {
    background-color: transparent;
}

header nav *,
header nav div ul:not(.dropdown-menu) li .nav-link{
    color: #fff !important;
}

nav ul.dropdown-menu * {
    color: #666666 !important;
}

header nav *,
header nav div ul li .nav-link{
    color: #fff !important;
}

nav a,
nav a:hover{
    text-decoration: none !important;
}

.btn-transparent {
    background-color: transparent;
    border: solid 1px var(--primary_color);
    color: var(--primary_color);
}

.btn-transparent:hover {
    background-color: var(--primary_color);
    color: #fff;
}

.btn-color-1 {
    background-color: var(--primary_button_color);
    border-bottom: solid 2px var(--primary_button_border_color);
    /*
    background: linear-gradient(to bottom, var(--primary_color) 0%, #a8c54f 100%) repeat scroll 0 0;
    text-shadow: 1px 1px 2px #7b7b7b;
    box-shadow: 1px 2px 2px #888;
    border: 1px solid #93b34a;
    */
}

.btn-color-1:hover {
    background-color: var(--primary_button_color_hover);
    /*
    background: linear-gradient(to bottom,#a4c753 0%,#8aa944 100%) repeat scroll 0 0;
    */
}

.btn-color-2 {
    background-color: var(--secondary_button_color);
    border-bottom: solid 2px var(--secondary_button_border_color);
    /*
    background: linear-gradient(to bottom, #325386 0%, #365482 100%) repeat scroll 0 0;
    text-shadow: 1px 1px 2px #7b7b7b;
    box-shadow: 1px 2px 2px #888;
    border: 1px solid #3d5e8e;
    */
}

.btn-color-2:hover {
    background-color: var(--secondary_button_color_hover);
    /*
    background: linear-gradient(to bottom, #2c4c7c 0%, #263a58 100%) repeat scroll 0 0;
    */
}

.grey {
    background-color: #c1c1c1;
}

.grey:hover {
    background-color: #b4b4b4;
}

.bright-grey {
    background-color: var(--light_grey2);
}

.bright-grey:hover {
    background-color: #c1c1c1;
}

.pulse-red,
.pulse-red + label:before {
    animation: invalid-pulse 1s infinite;
}

.pulse-green,
.pulse-green + label:before {
    animation: valid-pulse 1s infinite;
}

.tooltip {
    background-color: var(--light_grey2);
    border-radius: 8px;
    position: absolute;
    opacity: 0.0;
    transition: opacity 0.25s, right 0.25s, left 0.25s;
    transition-timing-function: ease-out;
    font-size: 13pt;
    transform: translateY(9px);
    z-index: 12;
    padding: 16px 20px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.4);
}

.tooltip.visible {
    opacity: 1.0;
    transition-timing-function: ease-in;
    height: auto;
}

.tooltip {
    padding: 8px 10px;
    font-size: 13pt;
    border: solid 1px #ccc;
}

.tooltip.to-right {
    border-top-left-radius: 0;
}

.tooltip.to-left {
    border-top-right-radius: 0;
}

.tooltip > span {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: -20px;
}

.tooltip.to-right > span {
    left: -1px;
    background: linear-gradient(45deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 50%,
    #ccc 51%,
    #ccc 52%,
    rgba(242, 242, 242, 0) 53%,
    rgba(242, 242, 242, 0) 100%);
    border-left: solid 1px #ccc;
}

.tooltip.to-left > span {
    right: -1px;
    background: linear-gradient(316deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 50%,
    #ccc 51%,
    #ccc 52%,
    rgba(242, 242, 242, 0) 53%,
    rgba(242, 242, 242, 0) 100%);
    border-right: solid 1px #ccc;
}

.tooltip > ul,
.tooltip > div {
    position: relative;
    z-index: 1;
}

.tooltip > ul > li:not(.no-results) {
    padding: 2px 6px;
}

.tooltip > ul > li:not(.no-results):hover {
    cursor: pointer;
    background-color: #ddd;
    border-radius: 4px;
}

.msg {
    font-size: 13pt;
    padding: 4px 6px;
    display: block;
    font-weight: bold;
    border-radius: 3px;
    white-space: normal;
}

.msg.notice {
    background-color: #e7effc;
    border: solid 1px var(--secondary_color);
    color: var(--secondary_color);
}

.msg.notice:before {
    content: "\f05a";
}

.msg.warning {
    background-color: #ffefcc;
    border: solid 1px #ffb71e;
    color: #ffb71e;
}

.msg.warning:before {
    content: "\f071";
}

.msg.failure {
    background-color: #ffcfb2;
    border: solid 1px #b50000;
    color: #b50000;
}

.msg.failure:before {
    content: "\f057";
}

.msg.success {
    background-color: #e3fdd2;
    border: solid 1px #658532;
    color: #658532;
}

.msg.success:before {
    content: "\f058";
}

.msg.notice:before,
.msg.warning:before,
.msg.failure:before,
.msg.success:before {
    font-family: Font Awesome\ 5 Pro;
    margin-right: 8px;
}

img {
    max-width: 100%;
}

/* COMMON TAGS */

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

a, *[data-href] {
    color: var(--primary_color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary_color);
}

a.disabled, *[data-href].disabled {
    display: none;
}

p > a {
    font-weight: bold;
}

a:hover,
*[data-href]:hover {
    text-decoration: underline;
    cursor: pointer;
}

strong, b {
    font-family: "DM Sans Thick", serif;
    font-weight: normal;
    letter-spacing: 0.5px;
}

pre {
    white-space: pre-wrap;
}

/* Inputs */

input,
button,
select,
textarea {
    font-family: inherit;
    vertical-align: middle;
}

input:disabled,
button:disabled,
select:disabled {
    opacity: 0.5;
}

input:disabled[type="checkbox"] + label,
input:disabled[type="radio"] + label {
    opacity: 0.5;
}

/* Checkbox and radio buttons */

input[type="checkbox"],
input[type="radio"] {
    display: none;
    vertical-align: middle;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "_";
    color: transparent !important;
    display: inline-block;
    background-color: #fff;
    width: 18px;
    height: 18px;
    box-shadow: inset 0 14px 14px -14px #ddd;
    border: solid 1px #ccc;
    font-size: 10pt;
    line-height: 18px;
    margin-right: 4px;
    overflow: hidden;
    vertical-align: -4px;
    font-weight: bold;
    border-radius: 3px;
}

input[type="checkbox"] + label[data-invisible-input]:before,
input[type="radio"] + label[data-invisible-input]:before {
    display: none;
}

input[type="checkbox"].small + label:before,
input[type="radio"].small + label:before {
    width: 13px;
    height: 13px;
    font-size: 8pt;
    line-height: 13px;
    vertical-align: -1px;
}

input[type="radio"] + label:before {
    border-radius: 18px;
}

input[type="checkbox"] + label:hover:before,
input[type="radio"] + label:hover:before {
    cursor: pointer;
    background-color: var(--light_grey2);
}

input[type="checkbox"]:disabled + label:before,
input[type="radio"]:disabled + label:before {
    color: #ccc;
}

input[type="checkbox"]:checked + label:before {
    content: "\f00c";
    text-align: center;
    font-family: Font Awesome\ 5 Pro;
    color: #434343 !important;
}

input[type="radio"]:checked + label:before {
    content: "\f058";
    text-align: center;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 900;
    color: #434343 !important;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    vertical-align: middle;
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 13pt;
    line-height: 24px;
    font-family: "DM Sans", serif;
}

input[type="checkbox"] + label:hover,
input[type="radio"] + label:hover {
    cursor: pointer;
}

/* Alternative checkbox style */

input[type="checkbox"].alt + label:before {
    content: "\f111";
    width: 40px;
    height: 25px;
    border-radius: 25px;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
    color: #fff !important;
    font-family: Font Awesome\ 5 Pro;
    padding: 0 3px 0 2px;
    background-color: #c1c1c1;
    box-shadow: none;
}

input[type="checkbox"].alt + label:after {
    width: 30px;
    content: "AUS";
    text-align: right;
    float: left;
    line-height: 26px;
    margin-right: 8px;
}

input[type="checkbox"]:checked.alt + label:before {
    text-align: right;
    background-color: var(--primary_color);
}

input[type="checkbox"]:checked.alt + label:after {
    content: "AN";
}

/* Custom password input */

input[type="password"] {
    font-size: 18pt;
    font-family: monospace;
    background-repeat: no-repeat;
    background-position: right;
}

input[type="password"]::placeholder {
    font-size: 13pt;
    font-family: "DM Sans", serif;
}

/* Buttons */

input[type="submit"],
input[type="button"],
button, .button {
    color: #fff;
    font-size: 13pt;
    line-height: 14pt;
    text-align: center;
    border-radius: 4px;
    padding: 8px 12px;
    display: inline-block;
    vertical-align: middle;
    /* Hebt seltsames Submit-Button-Rendering auf iPhone/Safari auf */
    -webkit-appearance: none;
}

input[type="submit"].cta,
input[type="button"].cta,
button.cta, .button.cta {
    font-family: "DM Sans Thick", serif;
    text-transform: uppercase;
}

input[type="submit"].big-cta,
input[type="button"].big-cta,
button.big-cta, .button.big-cta {
    font-family: "DM Sans Thick", serif;
    text-transform: uppercase;
    font-size: 15pt;
    line-height: 20pt;
    padding: 26px 18px;
    border-radius: 7px;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover,
a.button:hover {
    cursor: pointer;
    text-decoration: none;
}

input[type="submit"]:active,
input[type="button"]:active,
button:active,
a.button:active {
    transform: translate(2px, 2px);
}

label {
    font-size: 13pt;
    font-family: "DM Sans Thick", serif;
    font-weight: normal;
    vertical-align: middle;
}

select {
    vertical-align: middle;
    width: inherit;
    color: inherit;
    font-size: 13pt;
}

h1, h2, h3, h4, h5 {
    font-family: "DM Sans Thick", serif;
    font-weight: normal;
    color: inherit;
}

/* CSS text-transform: uppercase ändert ß zu SS
ß können in span gewrapped werden um das zu verhindern */
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span {
    text-transform: none;
}

h1 {
    font-size: 30pt;
    line-height: 36pt;
    margin-top: 25px;
    margin-bottom: 15px;
}

h2 {
    font-size: 24pt;
    line-height: 30pt;
    margin-bottom: 10px;
}

h3 {
    font-size: 18pt;
    line-height: 22pt;
    margin-top: 20px;
    margin-bottom: 10px;
}

h4 {
    font-size: 16pt;
    line-height: 20pt;
    margin-top: 10px;
    margin-bottom: 10px;
}

h5 {
    font-size: 15pt;
    line-height: 19pt;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 640px) {
    h1 {
        font-size: 22pt;
        line-height: 26pt;
    }

    h2 {
        font-size: 20pt;
        line-height: 24pt;
    }

    h3 {
        font-size: 16pt;
        line-height: 18pt;
    }

    h4 {
        font-size: 15pt;
        line-height: 17pt;
    }
}

hr {
    clear: both;
}

ol {
    padding-left: 30px;
    margin: 10px;
}

div.or {
    margin: 10px 0;
}

div.or > hr {
    display: inline-block;
    border: solid 1px var(--secondary_color);
    width: 40%;
    vertical-align: middle;
    max-width: calc(40% - 50px);
}

div.or > span {
    display: inline-block;
    width: 20%;
    vertical-align: middle;
    text-align: center;
    font-family: "DM Sans Thick";
    color: var(--secondary_color);
    font-size: 13pt;
    min-width: 44px;
}

i[class^="fa"] > label {
    font-size: 0;
}

/* UNIQUE TAGS */

body {
    word-wrap: break-word;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 25px;
    background-size: 100% auto;
    color: #434343;
    font-family: "DM Sans", serif;
    min-width: 320px; /* 360px; 420px */
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 13pt;
    line-height: 18pt;
    transform-origin: 0% 0%;
}

/* alert indicator within menu option */

@media only screen and (max-width: 640px) {

    /* General structure */
    body {
        padding-top: 0;
    }

    header {
        position: fixed !important;
        z-index: 8;
        width: 100%;
        top: 0;
    }
}

/* Header - Logo */

.navbar-brand {
    max-width: 200px;
}

header > div.logo {
    width: 900px;
    margin: 0 auto;
}

header > div.logo > span {
    position: relative;
    display: inline-block;
    padding-right: 60px;
}

header > div.logo > span:before {
    content: "";
    position: absolute;
    right: 100%;
    width: 960px;
    height: 100%;
}

header > div.logo > span > a:nth-child(1) img {
    max-height: 100px;
    max-width: 100%;
    margin: 20px 0;
    display: block;
    object-fit: contain;
}

@media only screen and (max-width: 992px){
    header > div.logo{
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    header > div.logo {
        width: 100%;
    }

    header > div.logo > span {
        margin: 0 36px;
    }
}

/* Form background query frame */

body > iframe[name="bg_query"] {
    opacity: 0.0;
    width: 1px;
    height: 1px;
    position: fixed;
    top: -100px;
    left: -100px;
}

body > iframe[name="bg_query"].debug-view {
    width: 400px;
    height: 300px;
    opacity: 1.0;
    top: auto;
    left: 20px;
    bottom: 20px;
    border: solid 2px #434343;
    background-color: #ddd;
}

/* Main */

body.website main {
    width: 100%;
    max-width: var(--max_container_width);
    margin: 0 auto 0;
    margin-top: 0;
    padding: 40px 0 40px;
    border-radius: 8px;
    background-color: #fff;
    display: block;
    /*
    border: solid 1px rgb(248, 248, 248);
    border-bottom: 3px solid #ddd;
    */
    /* box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4); */
}

@media only screen and (max-width: 1620px) {
    body.website main {
        padding: 40px 16px 40px;
    }
}

@media only screen and (max-width: 1200px) {
    body.website main {
        width: 100%;
        border-radius: 0;
    }
}

/* Responsive content */

.responsive-content > span {
    text-transform: inherit;
}

@media only screen and (min-width: 641px) {
    .responsive-content > span:last-of-type,
    .responsive-content > img:last-of-type {
        display: none;
    }
}

@media only screen and (max-width: 640px) {
    .responsive-content > span:first-of-type,
    .responsive-content > img:first-of-type {
        display: none;
    }
}

/* Kleiner Text beim AGB akzeptieren */

p.legal-sub-text {
    font-size: 10pt;
    line-height: 14pt;
}

/* Responsive banners */

@media only screen and (max-width: 640px) {
    img.banner.desktop,
    iframe.banner.desktop {
        display: none !important;
    }

    img.banner.tablet,
    iframe.banner.tablet {
        display: none !important;
    }
}

@media only screen and (min-width: 641px) and (max-width: 1440px) {
    img.banner.desktop,
    iframe.banner.desktop {
        display: none !important;
    }

    img.banner.phone,
    iframe.banner.phone {
        display: none !important;
    }
}

@media only screen and (min-width: 1441px) {
    img.banner.phone,
    iframe.banner.phone {
        display: none !important;
    }

    img.banner.tablet,
    iframe.banner.tablet {
        display: none !important;
    }
}

.dropdown-item.active, .dropdown-item:active{
    background-color: #e9ecef !important;
}

/* SHORTCODES */
div.attachment {
    text-align: center;
    margin: 10px;
}

div.attachment img,
div.attachment picture{
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.product-item{
    margin: 4px;
    height: 100%;
}

.product-item a.btn-primary {
    box-shadow: 0px 3px 20px #00000029;
}

.product-item a.btn-primary {
    padding: 0.5rem 1rem !important;
}

.product-item a.btn-detail {
    margin-top: 12px;
}

.post-grid .col {
    margin-top: 20px;
    margin-bottom: 20px;
}

div.post-grid div.row>div,
div.product-grid div.row>div{
    padding: 8px;
}

.product-thumbnail{
    width: 300px;
    object-fit: contain;
    height: 150px;
}

img.post-thumbnail.list{
    border-radius: 16px 0 0 16px;
}

img.post-thumbnail{
    border-radius: 16px 16px 0 0;
    width: 100%;
    object-fit: contain;
    max-height: 395px;
}

a.btn {
    margin: 2px;
}

.btn-block {
    display: block;
    width: 100%;
}

span.discount {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0px 8px;
    margin: 12px;
    background-color: var(--primary_color);
    color: #fff;
    font-size: 10px;
}

span.discount.offset{
    top: 36px;
}

a.btn-detail {
    color: #464646 !important;
    background-color: #e7f5f9;
    border-color: #e7f5f9;
}

div.post-item{
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0px 3px 20px #0000001A;
    position: relative;
}

div.post-item .blog-post-button,
div.news-item .news-post-button {
    background-color: var(--primary_color);
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 20px;
    padding: 10px 13.75px;
    margin-bottom: -20px;
    margin-left: -20px;
    border-radius: 20px;
}

div.post-item:hover{
    background-color: #fbfbfb;
    transform: scale(1.05);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 16px 22px 0 rgb(0 0 0 / 19%) !important;
}

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

div.post-data{
    padding: 5px;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    display: table;
    height: 120px;
    width: 100%;
}

div.post-item span.post-title{
    font-size: 15px;
    color: #464646;
    display: table-cell;
    vertical-align: middle;
}

div.product-item .button-container .fa-amazon {
    font-size: 20px;
    vertical-align: middle;
}

div.product-item .button-container {
    max-width: 300px;
    height: 100px;
    margin: auto;
    display: table;
}

div.product-item .button-container-inner {
    display: table-cell;
    vertical-align: middle;
}


div.product-item .product-review-result p,
div.product-item .product-review-result-badge p {
    margin-bottom: 0;
    font-size: 15px;
}

div.product-item .product-review-result {
    border: solid 2px #eee;
    border-radius: 8px;
    margin: 10px 0;
    padding: 5px;
}

.product-review-result-badge {
    position: absolute;
    color: var(--primary_color);
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    top: 0;
    left: 0;
    margin: 5px;
}

div.product-item .product-thumbnail-container{
    padding: 2px;
    border-radius: 15px;
}

div.product-item .product-thumbnail-container img{
    height: 150px;
}

.product-item-container{
    position: relative;
    border: 1px solid #f0f0f0;
    padding: 5px;
    width: 100%;
    height: 100%;
    border-radius: var(--card-custom-border-radius);
    box-shadow: 0px 3px 20px #0000001A;
    background-color: #fff;
}

.product-data.grid {
    height: 100px;
    display: table;
    text-align: center;
    width: 100%;
}

.product-data.list p {
    margin: 0 auto;
}

.product-data.grid p {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.product-item span.product-title{
    height: 25px;
}

table span.product-title {
    font-weight: normal;
}

#kategorie-container img,
.kategorie-container img{
    transition: all .2s ease-in-out;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 8px 0 rgb(0 0 0 / 19%) !important;
    max-width: 100%;
}

#kategorie-container img:hover,
.kategorie-container img:hover{
    transform: scale(1.1);
    box-shadow: 0 12px 16px 0 rgb(0 0 0 / 20%), 0 10px 12px 0 rgb(0 0 0 / 19%) !important;
}

div.product-item{
    position: relative;
    transition: 0.3s;
    border-radius: var(--card-custom-border-radius);
    max-width: 750px;
    margin: auto;
}

div.product-item img.product-thumbnail{
    #border-radius: 16px 16px 0 0;
}

div.product-item:hover{
    background-color: #fbfbfb;
    #transform: scale(1.05);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%),0 6px 8px 0 rgb(0 0 0 / 19%)!important;
}

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

div.product-item span.product-title{
    font-size: 16px;
}

.round-img img, .round-img {
    border-radius: 50%;
}

.round-img.aligncenter{
    width: unset;
    object-fit: unset;
}

#hersteller-uebersicht a.btn:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 19%) !important;
    background-color: var(--primary_color);
    color: #fff;
}

#hersteller-uebersicht a.btn {
    margin: 5px !important;
    color: var(--primary_color);
    border: solid 1px var(--primary_color);
    background-color: transparent;
    transition: all .2s ease-in-out;
}

#hersteller-uebersicht{
    text-align: center;
}

#hersteller-uebersicht .overview-button .btn {
    background-color: var(--primary_color);
    color: #fff;
}

.btn-round.btn-lg {
    border-radius: 75px;
}

#white-text, .white-text {
    color: #fff !important;
}

.btn-group-lg>.btn, .btn-lg{
    font-size: 14px;
    padding: 0.5rem 2rem;
}

.btn-default {
    background-color: #fff;
}

.table-details .fa-check-circle{
    color: #7ab317;
}

.table-details .fa-times-circle {
    color: #c01313;
}

.product-rating .fas.fa-star {
    color: var(--primary_color);
}

.product-rating .fas.fa-star-half-alt {
    color: var(--primary_color);
}

.product-rating .far.fa-star {
    color: var(--primary_color);
}

.product-reviews-number .product-rating {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.product-rating {
    color: #9fa2a5;
}

img.aligncenter {
    width: 100%;
    object-fit: contain;
}

.offset-1-7th{
    margin-left: 9.28%;
}

.spacer-size-sm{
    height: 16px;
}

.spacer-size-md{
    height: 32px;
}

.spacer-size-lg{
    height: 64px;
}

.spacer-size-xl{
    height: 128px;
}

@media only screen and (max-width: 640px){
    .spacer-size-sm{
        height: 4px;
    }

    .spacer-size-md{
        height: 8px;
    }

    .spacer-size-lg{
        height: 16px;
    }

    .spacer-size-xl{
        height: 32px;
    }
}

.lightbox img:not(.round){
    max-width: 100%;
    object-fit: contain;
}

div.attachment_img img{
    max-width: 100%;
    object-fit: contain;
}
div.attachment_img.left{
    text-align: left;
}
div.attachment_img.right{
    text-align: right;
}
div.attachment_img.center{
    text-align: center;
}

div.attachment_img div.attachment_container div.attachment_img_caption{
    padding: 15px;
    background-color: #f5f5f5;
}

div.attachment_img div.attachment_container div.attachment_img_caption p{
    margin-bottom: 0;
}
/* SHORTCODES ENDE */

/* BOOTSTRAP VARIABLEN */
.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active,
.btn-primary:active, .show>.btn-primary.dropdown-toggle{
    border-color: var(--primary_color) !important;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: var(--primary_color) !important;
}

.btn {
    text-decoration: none !important;
    /* padding: 10px 30px; */
}

.btn {
    position: relative;
    border-radius: 50px;
}

.btn .fa-chevron-right {
    position: absolute;
    right: 14px;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-primary:hover {
    border-color: var(--secondary_color) !important;
    background-color: var(--secondary_color) !important;
}

div.register{
    text-align: center;
}

iframe{
    max-width: 100%;
}

span.favourite-icon{
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px;
}

span.favourite-icon i{
    font-size: 20px;
    font-weight: 500;
}

span.favourite-icon i.active{
    font-weight: 700;
}

span.favourite-button{
    margin-top: 10px;
}

span.favourite-button a i{
    font-size: 20px;
    font-weight: 500;
}

/* BOOTSTRAP VARIABLEN ENDE */

/* Formulare */
form input[type="text"],
form input[type="password"],
form input[type="email"],
form select,
form textarea{
    width: 100%;
    border: solid 2px #ccc;
    border-radius: 4px;
    padding: 6px;
    font-size: 16px;
    box-shadow: none;
}
/* Formulare ENDE */

.async-ad{
    width: 100%;
}

div.company-item{
    position: relative;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%) !important;
    max-width: 700px;
    margin: auto;
}

div.company-item span.distance {
    position: absolute;
    margin: 8px;
    bottom: 0;
    background-color: var(--primary_color);
    padding: 0px 6px;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
}

div.company-item:hover{
    background-color: #fbfbfb;
    transform: scale(1.05);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 16px 22px 0 rgb(0 0 0 / 19%) !important;
}

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

div.company-data{
    padding: 5px;
}

div.company-item span.company-title{
    font-weight: bold;
    font-size: 18px;
    height: 60px;
    text-overflow: ellipsis;
    display: table-cell;
    vertical-align: middle;
    padding-left: 5px;
    padding-right: 5px;
}

img.company-thumbnail.list{
    border-radius: 16px 0 0 16px;
}

div.company-thumbnail-container {
    position: relative;
    border-radius: 16px 16px 0 0;
}

img.company-thumbnail{
    border-radius: 16px 16px 0 0;
    width: 100%;
    object-fit: contain;
    max-height: 395px;
}

div.company-item span.featured-badge {
    position: absolute;
    background-color: var(--primary_color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 16px;
    margin: 5px;
    font-size: 14px;
}

div.company-taxonomy-item{
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%) !important;
    background-color: var(--primary_color);
    color: #fff;
}

div.company-taxonomy-item:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 16px 22px 0 rgb(0 0 0 / 19%) !important;
}

div.company-taxonomy-item a{
    text-decoration: none;
    color: inherit;
}

div.company-taxonomy-data{
    padding: 15px 5px;
}

div.company-taxonomy-item span.company-title{
    font-weight: bold;
    font-size: 18px;
    height: 60px;
    text-overflow: ellipsis;
    display: block;
}

div.location-item {
    padding: 25px 5px;
}

a.location-item-container:hover {
    scale: 1.1;
    text-decoration: none !important;
}

.video-container {
    max-width: 100%;
    text-align: center;
}

video {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    h4.author-headline {
        text-align: center;
    }
}

.author-box .row .col.author-image img {
    object-fit: contain;
    border-radius: 500px;
}

.author-box .row .col.author-image {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .author-box .row .col.author-image img {
        max-height: 250px;
        text-align: center;
    }

    .author-box .row .col.author-info {
        padding-left: 0;
        padding-right: 0;
    }
}

.main-content-container {
    max-width: 1000px;
    margin: auto;
}

/* Blocksatz */
.text-justify-container > p,
.text-justify-container > ul,
.text-justify-container > div.row > div.col > p,
.text-justify-container > div.row > div.col > ul {
    hyphens: auto;
    text-align: justify;
}
/* Blocksatz ENDE */

.row.vertically-centered .col {
    display: table;
}

.row.vertically-centered .col-container{
    display: table-cell;
    vertical-align: middle;
}

.page-container-component {
    background: transparent linear-gradient(180deg, #fff 0%, rgba(var(--primary_color_rgb), 30%) 100%) 0% 0% no-repeat padding-box;
}

.page-container-component-light {
    background: transparent linear-gradient(180deg, #fff 0%, rgba(var(--primary_color_rgb), 30%), 100%) 0% 0% no-repeat padding-box;
}

/* Workaround für Bug bei Bootstrap */
.text-white {
    --bs-text-opacity: 1;
    color: rgb(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

a.taxonomy-button {
    background-color: var(--primary_color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--animation);
    transition-timing-function: var(--animation-function);
}

a.taxonomy-button:hover {
    background-color: var(--secondary_color);
    box-shadow: 0px 3px 20px #00000029;
}

.product-data-table tr:not(:last-child){
    border-bottom: solid 1px #eee;
}

.product-data-table td{
    border-bottom: none;
}

.icon-button-info .content {
    min-height: 120px;
    padding: 20px 0;
}

@media (max-width: 1280px){
    .icon-button-info .content {
        min-height: 150px;
    }
}

@media (max-width: 1080px){
    .icon-button-info .content {
        min-height: 180px;
    }
}

@media (max-width: 991px){
    .icon-button-info .content {
        min-height: unset;
    }
}

.product-category-icon-container {
    margin: 20px auto;
    flex: 1 0 16.66666666%;
}

@media (max-width: 1400px){
    .product-category-icon-container {
        flex: 1 0 20%;
    }
}

@media (max-width: 992px){
    .product-category-icon-container {
        flex: 1 0 33.333%;
    }
}

@media (max-width: 767px){
    .product-category-icon-container {
        flex: 1 0 50%;
    }
}

.product-category-icon-container > div {
    margin: auto;
    max-width: 200px;
}

.product-category-icon-container a:hover {
    text-decoration: none;
}

.product-category-icon-container a:hover p,
.product-category-icon-container p {
    text-align: center;
    text-decoration: none;
    color: #464646;
    display: table;
    min-height: 50px;
    margin: auto;
}

.product-category-icon-container p strong {
    display: table-cell;
    vertical-align: middle;
}

.product-category-icon-container .icon {
    padding: 20px;
    margin: auto;
    background-color: var(--primary_color);
    border-radius: 100px;
    height: 100px;
    width: 100px;
}

.product-category-icon-container a:hover .icon {
    background-color: var(--secondary_color);
}

#our-tip-image-container img{
   @media (max-width: 991px){
       width: 100% !important;
       height: 300px;
   }
}

img.icon-button-info-icon{
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.btn-xl {
    font-size: 18px;
}

.btn-round {
    border-radius: 20px;
}