*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

/* Basic styles */
html {
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.2em;
}

body {
    background-color: rgb(19 106 168);
    align-items: center;
    justify-content: center;
}
body.bgshop {
    background-color: none;
    background-image: url('../img/webConstruction1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    /*background-attachment: fixed; */
    height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700px;
    text-align: center;
    line-height: 2em; /*Use em instead of rem here, so the line-height corresponds to each headline's font-size, and not the root font-size*/
    margin: 0.5em; /*Same use of em as described above*/
}
h3 {
   font-size: 1.2em;
}

h4 {
    color: rgb(240 130 0);
    font-size: 1.2em;
}
h5 {
    color:rgb(240 130 0);
    text-align: left;
    font-size: 1,6rem;
}
h6 {
    color: rgb(240 130 0);
    font-style: text-underline-offset;
    font-size: 18px; 
}

a {
    text-decoration: none;
    color: #fff;
}

a p {
    color: inherit;
    text-decoration: inherit;
}

/* Header-Styling */
header {
    background-color: none;
}

header .bg-primary {
    background-color: white;
    padding: 5px;
}

header .bg-secondary {
    background-color: rgb(240 130 0);
    color: white;
    font-size: 15px;
    padding: 0px;
}

header .bg-secondary .nav a {
    color: white;
    font-size: 15px;
    margin: 0;
}

header .logo {
    display: inline-block;
    width: 80%;
    height: auto;
}

header .nav a {
    color: black;
    text-decoration: none;
}

header ul.navigation {
    padding-left: 0;
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    list-style-type: none;
}

header ul.navigation li {
    list-style: none;
    display: block;
}

header ul.navigation li a {
    color: rgb(29 30 67);
    padding: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: none;
}

header ul.navigation li a i {
    font-size: 48px;
    color: red;
}

header ul.navigation li.current a {
    color: black;
    border: 1px solid black;
}

header ul.navigation li a:hover {
    background: rgb(19 106 168);
    color: white;
}

header .searchBox {
    display: flex;
}
header .searchBox input {
    align-self: center;
}

.header ul.navigation.topNav {
    margin: 10px 0;
}

/* Header-Styling Ende */

/*   Slideshow Shop Anfang  */
.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

.slideshow-container { /* Slideshow container */
    max-width: auto;
    position: relative;
    margin: auto;
}

.text { /* Caption text */
    background-color: rgb(29 30 67);
    text-align: center;
    padding: 10px;
    font-size: 30px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

.numbertext { /* Number text (1/3 etc) */
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot { /* The dots/bullets/indicators */
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.fade { /* Fading animation */
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@media only screen and (max-width: 300px) {
    /* On smaller screens, decrease text size */
    .text {
        font-size: 11px
    }
}    /*   Slideshow Shop Ende  */

/* Buttons- Style */
.myButton {
    box-shadow: inset 0px 1px 0px 0px #97c4fe;
    background: linear-gradient(to bottom, #3d94f6 5%, #1e62d0 100%);
    background-color: #3d94f6;
    border-radius: 6px;
    border: 1px solid #337fed;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #1570cd;
    text-align: center;
}

.myButton:hover {
    background: linear-gradient(to bottom, #1e62d0 5%, #3d94f6 100%);
    background-color: #1e62d0;
}

.myButton:active {
    position: center;
    top: 1px;
}

.btt-button {
    color: #fff;
    background-color: rgb(19 106 168);
    padding: 20px 20px;
    margin-bottom: 5px;
    display: inline-block;
    position: fixed;
    right: 35px;
    bottom: 50px;
    box-shadow: -10px 10px 26px 0px rgba(0, 0, 0, 0.82);
    transition: all 0.4s linear;
}

.btt-button:hover {
    color: white;
    background-color: rgb(29 30 67);
    box-shadow: -10px 10px 26px 10px rgba(0, 0, 0, 0.82);
    /* x-achse, y-achse, blur, spread, color */
    padding: 20px 25px;
    transform: rotate(360deg);
}

.suche {
    font-family: Roboto Condensed;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2em;
    border: none;
    color: rgb(29 30 67);
    background-color: white;
}
/* Button- Styles Ende */

.alignItemsCenter {
    align-items: center;
}

.margin-bottom-small,
.mb-small {
    margin-bottom: 30px;
}
.margin-bottom-top-small,
.mb-mt-small {
    margin-bottom: 30px;
}
.padding-small,
.p-small {
    padding:30px;
}
.p-none {
    padding: 0;
}
.d-flex {
    display: flex;
}

/* Logo Slideshow */
.slider {
    height: 200px;
    margin: 10px 0px 0px 0px;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slider .slide-track {
    animation: scroll 27s linear infinite;
    display: flex;
    width: calc(100px * 30);
}

.slider .slide {
    height: 100px;
    width: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100px * 15));
    }
}
/* Logo Slideshow ENDE */



/* Produkte - Wissen-fenster */
.BoxProduct {
    position: relative;
    margin-bottom: 2em;
    display: block;
}

.BoxProduct p {
    background-color: rgb(29 30 67);
    text-align: center;
    padding: 10px;
}

.BoxProduct .myButton {
    display: none;
    position: absolute;
    bottom: 0;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 5%;
}

.BoxProduct:hover .myButton {
    display: block;
}
 /* Produkte-Wissen-fenster Ende */


/* Content Site (Unterseiten) */
main.contentWithoutSlider {
    margin-top: 5em;
}


/* Seite: Kontakt / Hotline */
form.kontaktFormular label {
    display: block;
}
form.kontaktFormular input[type="text"],
form.kontaktFormular textarea {
    display: block;
    padding: 4px 2px;
    width: 100%;
    margin-bottom: 1em;
    font-size: 0.8em;
}

h3.phoneNumber {
    letter-spacing: 4px;
}


/* Footer- Style */
footer .bg-footer {
    background-color: rgb(29 30 67);
    color: rgba(255, 255, 255, 0.527);
    font-size: 20px;
    padding: 0px;
}

footer a {
    display: inline-block;
    width: 100%;
    text-align: center;
}
/* Footer- Style Ende */

.container.schachbrett {
    padding: 0px;
}


/* Media Query für mittleren Breakpoint */
@media screen and (max-width:480px) {
    .navigation.topNav {
        font-size:16px;
    }
}
@media screen and (max-width:768px) {
    .logo {
        width: 100%;
    }
    .navigation.topNav li a {
        font-size: 0.8rem;
    }
    .navigation.topNav li a i {
        font-size: 25px;
        display: block;
        text-align: center;
    }
}
@media screen and (min-width:769px) and (max-width:1200px) {
    html{
        font-size:14px;
    }
    .col-md-6-12 {
        flex-basis: calc(100% / 12 * 6);
        max-width: calc(100% / 12 * 6); 
    }
}
/* Media Query für großen Breakpoint */

@media screen and (min-width:1201px) {
    html{
        font-size:16px;
    }

    /* Responsive Grid */
    .container.responsive {
        width: 100%;
        max-width: 1000px;
    }

    .col-lg-3-12 {
        flex-basis: calc(100% /12*3);
        max-width: calc(100% /12*3);
    }

}  
.cookie-banner {
	position: fixed;
	bottom: 40px;
	left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:red;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.close {
  height: 40px;
  width: 40px;
  background-color: black;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}
 /* Responsive Grid Ende */

  /* Blink-Text */
.blink {
    animation-name: animation_blink;
    animation-timing-function: ease-in;
    animation-duration: 2s; 
    animation-iteration-count: infinite;
    color: rgb(240 130 0);
    font-family:'Roboto Condensed';
    font-size: 2em;           
}

@keyframes animation_blink {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }    
}


/* Blink-Text Ende */