/* --------------------------------------------------
  xx. Variablen
-------------------------------------------------- */
:root {
  --template-color-1: #336699;
  --template-color-2: lightsteelblue;
  --template-color-3: #DFDFDF;
  --template-color-4: #ffffff;
}

p {
  padding: 0px;
  margin: 0px;
}

.full-width {
  padding: 0px;
  margin: 0px;
}


/* --------------------------------------------------
  xx. Global
-------------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--template-color-2);
}


/* --------------------------------------------------
  xx. Farben
-------------------------------------------------- */
.bg-white {
  background-color: #F7F8F8;
}

.bg-gray {
  background-color: #E4E6E6;
}

.bgbg-gray-light {
  background-color: #F7F8F8;
}

.bg-black {
  background-color: #000000;
}

.bg-red {
  background-color: #ff0000;
}

.bg-fima-blue {
  background-color: #007DBE;
  color: #ffffff;
}


/* --------------------------------------------------
  xx. Buttons
-------------------------------------------------- */
.btn-primary {
  background-color: var(--template-color-1);
}

.btn-danger {
  background-color: var(--template-color-2);
}

/* --------------------------------------------------
  xx. Navigation
-------------------------------------------------- */

.navbar-cms {
  background-color: transparent !important;
}

.navbar-cms .navbar-brand {
  color: #000000;
}

.navbar-cms .navbar-brand:hover,
.navbar-cms .navbar-brand:focus {
  color: #000000;
}

.navbar-cms .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
  font-size: 24px;
}

.navbar-cms .navbar-nav .nav-link:hover,
.navbar-cms .navbar-nav .nav-link:focus {
  color: var(--template-color-2);
}

.navbar-cms .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.25);
}

.navbar-cms .navbar-nav .show>.nav-link,
.navbar-cms .navbar-nav .nav-link.active {
  color: var(--template-color-2);
}

.navbar-cms .navbar-toggler {
  color: transparent;
  border-color: transparent;
}

.navbar-cms .navbar-toggler-icon i {
  font-size: 28px;
  color: rgba(0, 0, 0, 0.55);
}

.navbar-cms .navbar-toggler-icon i:hover {
  color: var(--template-color-2);
}

.navbar-cms .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}

.navbar-cms .navbar-text a,
.navbar-cms .navbar-text a:hover,
.navbar-cms .navbar-text a:focus {
  color: #000000;
}

/* --------------------------------------------------
  xx. Header
-------------------------------------------------- */
header {
  transition: 0.4s;
  color: #E8E9EA;
}

header .logo {
  transition: 0.4s;
}

header .logo img {
  /*max-width: 100%;*/
  max-height: 75px;
}

/*-- TopHeader --*/
.top-header {
  height: 40px;
  background-color: #dfdfdf;
}

/*-- TopHeader :: Profil --*/
.top-header .profil ul {
  margin: 0px;
  padding: 0px;
  float: right;
}

.top-header .profil ul li {
  display: inline-block;
  list-style: none;
}

.top-header .profil ul li a {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 40px;
  color: #666;
  text-align: center;
  text-decoration: none;
  padding: 0 20px;
}

.top-header .profil ul li a:hover {
  color: var(--template-color-1);
}

.top-header .profil ul li a:after {
  content: '|';
  color: var(--template-color-1);
  display: block;
  position: absolute;
  top: -1px;
  left: -3px;
}

.top-header .profil ul li:first-child a:after {
  display: none;
}

.top-header .profil ul li:last-child a {
  padding-right: 0px;
}

/* Static Headers
-------------------------------------------------- */
.header-static {
  position: relative;
}


.header-static .header-caption {
  position: absolute;
  top: 40%;
  width: 100%;

  text-shadow: black 2px 3px;
}

.header-static .header-caption h1 {
  color: #ffffff;
}

.header-static img {
  max-width: 100%;
  height: auto;
}

.header-bg {
  background-color: #E8E9EA !important;
}

.header-bg img {
  width: 100%;
}

.header-static .header-caption {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.header-static .header-caption .container {
  padding-left: 0px;
  padding-right: 0px;
}



/* Header-Slider
-------------------------------------------------- */
.header-slider .carousel .carousel-item {
  height: 600px;
}

.header-slider .carousel .carousel-item .carousel-bg img {
  width: 100%;
}

.header-slider .carousel .carousel-item .header-caption {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.header-slider .carousel .carousel-item .header-caption .container {
  padding-left: 0px;
  padding-right: 0px;
}


/* indicators */
.header-slider .carousel .carousel-indicators {
  /*display: none;*/
}

/* carousel-control :: full-width */
.header-slider .carousel .carousel-control-prev,
.header-slider .carousel .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  padding: 0;
  color: #fff;
  text-align: center;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  /*background: red;*/
  margin: 0px 150px;
}

/*
.header-slider .carousel .carousel-control-prev-icon {
    background-image: url("img/arrow_black_left.png");
    background-size: cover;
    width: 55px;
    height: 55px;
}

.header-slider .carousel .carousel-control-next-icon {
    background-image: url("img/arrow_black_right.png");
    background-size: cover;
    width: 55px;
    height: 55px;
}
*/


/* --------------------------------------------------
  xx. Footer
-------------------------------------------------- */
footer {
  background-color: #303030;
  color: #ffffff;
}

footer .footer-widget h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-widget p {
  color: #a3a3a3;
  font-size: 16px;
  line-height: 23px;
}

.footer-widget p a {
  color: #a3a3a3;
  text-decoration: none;
}

.footer-widget p a:hover {
  /*color: var(--template-color-2);*/
  color: #fff;
}

.footer-widget p:last-child {
  margin-bottom: 0;
}


/* Footer :: Menüs / Listen
-------------------------------------------------- */
.footer-widget ul {
  margin: 0px;
  padding: 0px;
}

.footer-widget li {
  list-style: none;
}

.footer-widget ul li a {
  color: #a3a3a3;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: #fff;
}

/* Footer :: Social-Media-Links
-------------------------------------------------- */
footer .social-media-links {
  margin-top: 20px;
}

footer .social-media-links a {
  color: #9c9c9c;
  display: block;
  float: left;
  margin-right: 20px;
  min-width: 12px;
  text-align: center;
  text-decoration: none;
  ;
}

footer .social-media-links a i {
  display: block;
  font-size: 30px;
}

footer .social-media-links a:hover {
  color: #3f3f3f;
}

footer .social-media-links a:hover {
  /*color: var(--template-color-2);*/
  color: #fff;
}

/* Footer :: Copyright
-------------------------------------------------- */
footer .footer-copyright {
  background-color: #292929;
}

footer .footer-copyright p {
  padding: 0px;
  margin: 0px;
}



/* --------------------------------------------------
  xx. Default PageContent
-------------------------------------------------- */

.document-title {
  padding: 40px 0px;
}

.document-title h1 {
  color: var(--template-color-4);
}

.cms-checkbox .form-check-label {
  padding-left: 5px;
  font-size: 18px;
}


/* Rows & Cols
-------------------------------------------------- */
.pageContent img {
  max-width: 100%;
}

/* Grid-Layout
-------------------------------------------------- */

.content-1-item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.content-2-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.content-3-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.content-4-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.content-item img {
  max-width: 100%;
  height: auto;
}


/* -----------------------------------
  xx. Seite :: Startseite ::Shop-Kategorien
--------------------------------------*/
ul.produkte-kategorien {
  margin: 0px;
  padding: 0px;
}

ul.produkte-kategorien li {
  display: inline-block;
  list-style: none;
}

ul.produkte-kategorien li a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 40px;
  color: #666;
  text-align: center;
  padding: 0 19px;
  text-decoration: none;

  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

ul.produkte-kategorien li:first-child a {
  padding-left: 0px;
}

ul.produkte-kategorien li.active a {
  color: var(--template-color-2);
}

ul.produkte-kategorien li a:hover {
  color: var(--template-color-2);
}

ul.produkte-kategorien li a:after {
  content: '|';
  color: var(--template-color-1);
  display: block;
  position: absolute;
  top: -1px;
  left: -3px;
}

ul.produkte-kategorien li:first-child a:after {
  display: none;
}

ul.produkte-kategorien li:last-child a {
  padding-right: 0px;
}


/* -----------------------------------
  xx. Seite :: Shop / Produkte :: Kategorien
--------------------------------------*/
.produkte-kategorien {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* -----------------------------------
  xx. Seite :: Shop / Produkte
--------------------------------------*/
.produkte {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.produkte .produkt {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 1px solid var(--template-color-3);
}

.produkte .produkt:hover {
  border: 1px solid var(--template-color-1);
}

/* Produkte-Bild */
.produkte .produkte-bild {
  overflow: hidden;
}

.produkte .produkte-bild .image {
  height: 275px;
  width: 95%;
  display: inline-block;
  position: relative;
}

.produkte .produkte-bild .image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*-- Produkte-Informationen (Text) --*/
.produkte .produkt-info {
  border-top: 1px solid #eeeeee;
  padding: 10px;
}

.produkte .produkt-info .title {
  display: block;
  font-size: 15px;
  line-height: 1.5em;
  font-weight: 400;
}

.produkte .produkt-info .title a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.produkte .produkt-info .title a:hover {
  color: var(--template-color-2);
}

/*-- Preis --*/
.produkte .produkt-info .price-area {
  margin-top: 10px;
  margin-bottom: 0;
}

.produkte .produkt-info .price {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
  padding-top: 8px;
  color: var(--template-color-1);
}

.produkte .produkt-info .price span {
  display: inline-block;
  line-height: 18px;
}

/* zum Warenkorb Button */
.produkte .produkt-info .price-area .btn-warenkorb {
  border: 1px solid var(--template-color-1);
  color: var(--template-color-1);
}

.produkte .produkt-info .price-area .btn-warenkorb:hover {
  background-color: var(--template-color-1);
  border: 1px solid var(--template-color-3);
  color: var(--template-color-3);
}

.produkte .produkt-info .price-area .btn-warenkorb i {
  color: var(--template-color-1);
}

.produkte .produkt-info .price-area .btn-warenkorb:hover i {
  color: var(--template-color-3);
}

/* Artikel-Verfügbarkeit */
.produkte .produkt-info .verfuegbarkeit {
  display: block;
  margin-top: 10px;
  color: var(--template-color-2);
}

/* Shop :: Seitenwechsel */
.pagination {
  margin-bottom: 28px;
}

.pagination li span,
.pagination li span:hover {
  color: var(--template-color-1);
  cursor: pointer;
}

.pagination li.active .page-link,
.pagination li.active:hover {
  background-color: var(--template-color-1);
  border-color: var(--template-color-1);
  color: #fff;
}

.pagination li a {
  color: var(--template-color-1);
}

.pagination li a:hover {
  background-color: var(--template-color-1);
  border-color: var(--template-color-1);
  color: #fff;
}

/* -----------------------------------
  xx. Seite :: Shop / Produkte-Details
--------------------------------------*/

/* mehrere Bilder vorhanden */
/* nur 1 Bild vorhanden */

/* Produkte-Bilder */
.produkte-bilder .carousel-control-prev-icon {
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' 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");*/
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.produkte-bilder .carousel-control-next-icon {
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' 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");*/
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/* Produkte-Details */
.produkte-details {
  padding-left: 35px;
}

/* Ribbon's */
.ribbon {
  position: absolute;
  top: 50px;
  padding-left: 51px;
  z-index: 20;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ribbon .ribbon-background {
  position: absolute;
  top: 0;
  right: 0;
}

.ribbon .theribbon {
  position: relative;
  width: 80px;
  padding: 6px 20px 6px 20px;
  margin: 30px 10px 10px -71px;
  color: #fff;
  background-color: var(--template-color-2);
  text-shadow: 0px 1px 2px #bbb;
}

.ribbon .theribbon:before,
.ribbon .theribbon:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
}

.ribbon .theribbon:after {
  left: 0px;
  top: 100%;
  border-width: 5px 10px;
  border-style: solid;
  border-color: #c8134e #c8134e transparent transparent;
}

.ribbon.sale {
  top: 0;
}

.ribbon.new {
  top: 50px;
}

.ribbon.new .theribbon {
  background-color: var(--template-color-1);
  text-shadow: 0px 1px 2px #bbb;
}

.ribbon.new .theribbon:after {
  border-color: #0c525d #0c525d transparent transparent;
}

.ribbon.gift {
  top: 100px;
}

.ribbon.gift .theribbon {
  background-color: #28a745;
  text-shadow: 0px 1px 2px #bbb;
}

.ribbon.gift .theribbon:after {
  border-color: #145523 #145523 transparent transparent;
}

/* Auswahl Produkte-Grösse */
.produkt-groesse h5 {
  color: var(--template-color-1);
}

.produkt-groesse .pg-item input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.produkt-groesse label.pg-item {
  cursor: pointer;
  background-color: var(--template-color-3);
  color: var(--template-color-1);
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: normal;
}

.produkt-groesse .pg-item,
.produkt-groesse .pg-item input[type=radio]+.pg-titel {
  cursor: pointer;
}

.produkt-groesse .pg-item input[type=radio]+.pg-titel {
  padding: 10px 20px;
}

.produkt-groesse .pg-item input[type=radio]:checked+.pg-titel {
  outline: 3px solid var(--template-color-1);
  background-color: var(--template-color-3);
  font-weight: 600;
  -webkit-transition: ease all .3s;
  -moz-transition: ease all .3s;
  -o-transition: ease all .3s;
  transition: ease all .3s;
}

.produkt-groesse .pg-item:hover .pg-titel {
  background-color: var(--template-color-1);
  color: var(--template-color-3);
  -webkit-transition: ease all .3s;
  -moz-transition: ease all .3s;
  -o-transition: ease all .3s;
  transition: ease all .3s;
}

.produkt-groesse .pg-item:hover input[type=radio]:checked+.pg-titel {
  background-color: var(--template-color-1);
  color: var(--template-color-3);
  -webkit-transition: ease all .3s;
  -moz-transition: ease all .3s;
  -o-transition: ease all .3s;
  transition: ease all .3s;
}

/*-- Preis --*/
.produkte-details .price-area {
  margin-top: 20px;
  margin-bottom: 0;
}

.produkte-details .price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 18px;
  padding-top: 8px;
  width: 200px;
  color: var(--template-color-1);
}

.produkte-details .price span {
  display: inline-block;
  line-height: 18px;
}

/* zum Warenkorb Button*/
.produkte-details .price-area .btn-warenkorb {
  border: 1px solid var(--template-color-1);
  color: var(--template-color-1);
}

.produkte-details .price-area .btn-warenkorb:hover {
  background-color: var(--template-color-1);
  border: 1px solid var(--template-color-3);
  color: var(--template-color-3);
}

.produkte-details .price-area .btn-warenkorb i {
  color: var(--template-color-1);
}

.produkte-details .price-area .btn-warenkorb:hover i {
  color: var(--template-color-3);
}

/* Artikel-Verfügbarkeit */
.produkte-details .verfuegbarkeit {
  display: block;
  line-height: 18px;
  padding-top: 8px;
  color: var(--template-color-2);
}


/* --------------------------------------------------
  xx. Tabellen
-------------------------------------------------- */



/* --------------------------------------------------
  xx. Abstände
-------------------------------------------------- */
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}


/*Padding All*/
.p-0 {
  padding: 0px;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.p-55 {
  padding: 55px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}



/* -----------------------------------
  xx. Startseite :: Kategorien
--------------------------------------*/

.services-5-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.services-5-items .service-item {
  background-color: var(--template-color-1);
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.services-4-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.services-4-items .service-item {
  background-color: var(--template-color-1);
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


figure {
  margin: 0px;
}

.figure {
  position: relative;
}

.figure img {
  width: 100%;
}

.figure-caption {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;

  background: rgba(50, 50, 50, 0.4);
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.figure-caption p {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

a:hover .figure-caption {
  background: none;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

a:hover .figure-caption p {
  color: var(--template-color-1);
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

/* -----------------------------------
  xx. Warenkorb-Symbol im Header
--------------------------------------*/
.cart-toggle {
  margin-right: 10px;
  position: relative;
}

.cart-toggle span {
  background-color: var(--template-color-2);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: -7px;
  width: 20px;
  text-align: center;
}

/* -----------------------------------
  xx. Bestellprozess :: Schritte
--------------------------------------*/
.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.progressbar li {
  list-style-type: none;
  width: 33.333%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  color: var(--template-color-1);
  font-size: 16px;
}

.progressbar li:before {
  width: 50px;
  height: 50px;
  content: counter(step);
  counter-increment: step;
  line-height: 50px;
  font-size: 18px;
  border: 2px solid var(--template-color-1);
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}

.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: var(--template-color-1);
  top: 25px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: var(--template-color-2);
}

.progressbar li.active:before {
  border-color: var(--template-color-2);
  background-color: var(--template-color-2);
  color: #fff;
}

.progressbar li.active+li:after {
  background-color: var(--template-color-2);
}

/* -----------------------------------
  xx. Bestellprozess
--------------------------------------*/
.pageContent .rahmen {
  border: 1px solid var(--template-color-3);
  padding: 20px;
}

.pageContent h3,
.form-header label {
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 10px;
}

.divKundenkontoLieferadresse,
.divGastLieferadresse {
  margin-top: 8px;
}

.form-header input {
  font-size: 18px;
}

.pageContent h3.border-bottom {
  border-bottom: 1px solid var(--template-color-3);
}

.pageContent i {
  padding-right: 5px;
}

.pageContent p {
  font-size: 18px;
}

/* -----------------------------------
  xx. Warenkorb
--------------------------------------*/

.warenkorb table thead th,
.zusammenfassung table thead th {
  background-color: #efefef;
}

/* Position entfernen */
.warenkorb .position-entfernen {
  opacity: 0.25;
  -webkit-transition: ease all .5s;
  -moz-transition: ease all .5s;
  -o-transition: ease all .5s;
  transition: ease all .5s;

}

.warenkorb .position-entfernen i {
  color: red;
}

.warenkorb .wk-position:hover .position-entfernen {
  opacity: 1;
  -webkit-transition: ease all .5s;
  -moz-transition: ease all .5s;
  -o-transition: ease all .5s;
  transition: ease all .5s;
}

.warenkorb .wk-bild {
  float: left;
  margin-right: 15px;
}

.warenkorb .wk-bild img {
  max-width: 75px;
  max-height: 75px;
}

.warenkorb .wk-text {
  float: left;
}

/* Artikel-Bezeichnung */
.warenkorb tbody h1,
.zusammenfassung tbody h1 {
  font-size: 16px;
  font-weight: bolder;
}

.warenkorb tbody h2,
.zusammenfassung tbody h2 {
  font-size: 15px;
  font-weight: normal;
}

.warenkorb tbody h3,
.zusammenfassung tbody h3 {
  font-size: 14px;
  font-weight: normal;
}

.warenkorb tbody h4,
.zusammenfassung tbody h4 {
  font-size: 14px;
  font-weight: normal;
}

/* Warenkorb-Menge */
.warenkorb .menge {
  border: 1px solid #ddd;
  display: block;
  padding: 0 30px;
  position: relative;
  width: 100px;
}

.warenkorb .menge input {
  border: medium none;
  height: 38px;
  text-align: center;
  width: 40px;
}

.warenkorb .menge span {
  cursor: pointer;
  color: #848484;
  display: block;
  height: 38px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 29px;
}

.warenkorb .menge span i {
  display: block;
  font-size: 16px;
  line-height: 38px;
}

.warenkorb .menge span.inc {
  right: 0;
}

.warenkorb .menge span.dec {
  left: 0;
}

/* Stückpreis */
.warenkorb .stueckpreis {
  color: #777777;
}

/* Position Summe */
.warenkorb .betrag {
  font-weight: 600;
}

.warenkorb .subtotal,
.zusammenfassung .subtotal {
  width: 200px;
  border-top: 2px solid black;
}

.warenkorb .versandkosten,
.zusammenfassung .versandkosten {
  font-weight: normal;
}

.warenkorb .total,
.zusammenfassung .total {
  width: 200px;
  border-top: 2px solid black;
  border-bottom: 3px double black;
}

/* -----------------------------------
  xx. Lieferart / Zusammenfassung / Bezahlung
--------------------------------------*/

.lieferart h3,
.zusammenfassung h3,
.bezahlung h3 {
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--template-color-3);
}

/* -----------------------------------
  xx. Zahlungsarten
--------------------------------------*/
.zahlungs-arten-area {
  display: none;
}

.zahlungs-arten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.zahlungs-arten .za-methode {
  text-align: center;
}

.zahlungs-arten .za-methode input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.zahlungs-arten label.za-methode {
  cursor: pointer;
  background-color: #fafafa;
  border-radius: 2px;
  border: 1px solid transparent;
  width: 100%;
  height: 100%;
  font-weight: normal;
}

.zahlungs-arten label.radio {
  margin-top: 0px;
}

.zahlungs-arten .za-logo {
  height: 60px;
}

.zahlungs-arten .za-logo img {
  max-width: 100%;
  height: auto;
}

.zahlungs-arten .za-methode,
.zahlungs-arten .za-methode input[type=radio]+.za-item {
  cursor: pointer;
}

.zahlungs-arten .za-methode input[type=radio]+.za-item {
  padding: 20px;
}

.zahlungs-arten .za-methode:hover .za-item {
  background-color: var(--template-color-3);
  -webkit-transition: ease all .3s;
  -moz-transition: ease all .3s;
  -o-transition: ease all .3s;
  transition: ease all .3s;
}

.zahlungs-arten .za-methode input[type=radio]:checked+.za-item {
  /*outline: 3px solid #D5B079;*/
  background-color: var(--template-color-4);
  color: #fafafa;
  font-weight: 600;
  -webkit-transition: ease all .3s;
  -moz-transition: ease all .3s;
  -o-transition: ease all .3s;
  transition: ease all .3s;
}


.bestellen-area {
  display: none;
}

/* -----------------------------------
  xx. AGB
--------------------------------------*/
#modalAGB .modal-body {
  max-height: 600px;
  overflow-y: scroll;
}

/* -----------------------------------
  xx. ScrollUp
--------------------------------------*/
#scrollUp {
  bottom: 20px;
  right: 20px;
  padding: 20px;
  background-color: transparent;
  border: 2px solid #999;
  border-radius: 50%;
  color: #999;
}

#scrollUp i {
  display: block;
  font-size: 20px;
}

#scrollUp:hover {
  background-color: #3f3f3f;
  color: #fff;
}



/* -----------------------------------
  Cookies
--------------------------------------*/

.CookieArea {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0px;
  z-index: 10000;
  background-color: var(--template-color-3);
  border-top: 1px solid var(--template-color-1);
  opacity: 0.85;
  font-size: 14px;
}

.CookieText {
  padding: 10px 0px 0px 0px;
  color: var(--template-color-1);
}

.CookieArea a {
  text-decoration: none;
  color: var(--template-color-1);
}

.CookieArea .CookieButton {
  padding: 10px 0px 10px 0px;
}

.CookieArea button {
  border: 1px solid var(--template-color-1);
  color: var(--template-color-1);
  padding: 5px 10px;
  font-size: 12px;
}

.CookieArea button:hover {
  border: 1px solid var(--template-color-2);
  color: var(--template-color-2);
}



/* -----------------------------------
  xx. Passwort
--------------------------------------*/

.boldgreen {
  font-weight: bold;
  color: green;
}

.passwort-minimum span {
  display: none;
  padding-left: 10px;
  color: green;
}

.passwort-grossundklein span {
  display: none;
  padding-left: 10px;
  color: green;
}

.passwort-buchstabenundzahlen span {
  display: none;
  padding-left: 10px;
  color: green;
}

.passwort-sonderzeichen span {
  display: none;
  padding-left: 10px;
  color: green;
}


/* -----------------------------------
  xx.  Offerten
--------------------------------------*/
.tblOfferte p {
  font-size: 12pt;
}

/* -----------------------------------
  xx. Effekte
--------------------------------------*/

.img-scale img {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  width: 100%;
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.img-scale:hover img {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}


/* -----------------------------------
  xx.  "hidden" classes (Bootstrap 3)
--------------------------------------*/

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/* -----------------------------------
  Ticketing Modul
--------------------------------------*/
.ticketing-txt-light,
.ticketing-txt-200 {
  font-weight: 200;
}

.ticketing-txt-heavy,
.ticketing-txt-400 {
  font-weight: 400;
}

.ticketing-txt-500 {
  font-weight: 500;
}

.ticketing-txt-sub {
  font-size: 15px !important;
  margin-top: .5em;
  font-weight: 300;
}

.ticketing-button {
  padding: 1em;
  text-align: center;
}

.ticketing-button:hover {
  cursor: pointer;
}

.ticketing-button i {
  font-size: 36pt;
  margin-bottom: .3em;
}

.ticketing-comment {
  border-bottom: 1px solid var(--template-color-3);
}

.ticketing-comment-meta {
  font-size: 14px;
  margin-bottom: .5em;
}

.ticketing-comment-new {
  min-height: 102px;
  height: auto;
  width: auto;
  padding: 6px 12px !important;
  margin-bottom: .7em;
  /* border-radius: 0; */
}

.ticketing table thead tr th,
#dtTicketing table thead tr th {
  border-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

.ticketing table tbody tr,
#dtTicketing table tbody tr {
  border-left: 4px solid transparent;
}

.ticketing table tbody tr:hover,
#dtTicketing table tbody tr:hover {
  cursor: pointer;
  /* background-color: #edeff333; */
  background-color: #dfe4ec6b;
  border-left: 4px solid #007dbe;
}

.ticketing table tbody tr td,
#dtTicketing table tbody tr td {
  vertical-align: middle;
  font-weight: 300;
}

@media (min-width: 1200px) {
  .ticketing-formular-new {
    padding-left: 5em;
    padding-right: 5em;
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

#ticketingTab {
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 2em;
  border-bottom: 0px solid #dee2e6;
}

#ticketingTab .nav-link.active {
  color: #007dbe;
  border-bottom: 4px solid #007dbe;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
}

#ticketingTab .nav-link.active:hover {
  color: #007dbe;
}

#ticketingTab .nav-link {
  border-bottom: 4px solid transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  color: #444;
  font-size: 24px;
  transition: color 0.05s ease-in-out, background-color 0.05s ease-in-out, border-color 0.05s ease-in-out;
}

#ticketingTab .nav-link:hover {
  color: #007dbe;
}

#ticketingTab .nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border: 0px;
}

#ticketingTab .btn {
  margin-top: .55em;
}

/* .ticketing .paginate_button {
  margin: 0 .2em;
  background-color: #007dbe;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ticketing .paginate_button a {
  color: rgb(51, 51, 51);
}

.ticketing .paginate_button:hover {
  background-color: #336699;
} */

.ticketing .btn-primary {
  background-color: #007dbe;
  border: 0;
}

.ticketing .btn-primary:hover {
  background-color: #336699;
  border: 0;
}

.ticketing-go {
  font-size: 24px;
  color: #007dbe;
  transition: color 0.05s ease-in-out, background-color 0.05s ease-in-out, border-color 0.05s ease-in-out;
}

.ticketing-go:hover {
  color: #336699;
}

.ticketing-box {
  padding-top: .7em;
  padding-bottom: .7em;
  margin-top: 1em;
  margin-bottom: 1em;
  border-top: 0px solid #dee2e6;
  border-bottom: 0px solid #dee2e6;
}

.ticketing-box table tbody tr:hover {
  border-left: unset !important;
  cursor: unset !important;
  background-color: unset !important;
}

.ticketing-box table tbody tr {
  border-left: unset;
}

.ticketing-header {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: .5em;
  margin-bottom: 1.5em !important;
}


@media (min-width: 576px) {
  .modal-dialog {
    max-width: 600px;
  }
}

.mb-6 {
  margin-bottom: 5rem !important;
}

h1 {
  font-size: 40px !important;
}

.header-category {
  font-weight: 200;
  color: #ffffffb0;
}

/* DATATABLES */
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: .25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: .3em .7em;
  /* margin-left: 2px; */
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}

.ticketing .pagination {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.ticketing .pagination li.active .page-link,
.ticketing .pagination li.active {
  background-color: #fafafa;
}

.ticketing .pagination li.active .page-link,
.ticketing .pagination li.active {
  background-color: #337ab7 !important;
  border-color: #337ab7 !important;
}

.ticketing .pagination li.active .page-link,
.ticketing .pagination li.active:hover {
  cursor: pointer;
  color: #fff;
}

.ticketing .pagination li:hover {
  color: #23527c;
  background-color: #eee;
  /* border-color: #ddd; */
}

.ticketing .pagination li a:hover {
  cursor: pointer;
  /* color: unset; */
  background-color: unset;
}

.ticketing .pagination li {
  /* background: #fafafa;
  color: #666; */
  border: 1px solid #ddd;
}

.ticketing .pagination li a {
  color: #666;
}

.ticketing .pagination li.active a {
  color: #fff;
}

.ticketing .pagination li.active a:hover {
  cursor: pointer;
  background-color: unset;
  border-color: #337ab7 !important;
  color: #fff;
}

.paginate_button.disabled:hover {
  cursor: not-allowed !important;
  background-color: unset !important;
}

.paginate_button.disabled a:hover {
  cursor: not-allowed !important;
  color: #666 !important;
}

#dtTicketing_wrapper>.row:first-child {
  /* background-color: #f4f4f4; */
  padding: 1em;
  box-shadow: rgba(0, 0, 0, 0.11) 0 3px 11px 0;
  -moz-box-shadow: rgba(0, 0, 0, 0.11) 0 3px 11px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.11) 0 3px 11px 0;
  background-color: #fff;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #007dbe;
  transition: 0.2s;
  margin-top: 4em;
  margin-bottom: 1em;

  /*  */
  border-radius: 5px 5px 0 0;
  border: 1px solid #dee2e6;
  border-bottom: 2px solid #007dbe;

}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf");
  src: url("/plugins/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff") format("woff")
}