/*!
 * Bootstrap v4.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 */

/* Define color variables */

:root {
  --yellow-light: rgb(249,245,242); /* #F9F5F2 */
  --pink-light: rgb(247,220,235); /* #F7DCEB */
  --pink-bright: rgb(251,127,177); /* #FB7FB1 */
  --blue-light: rgb(208,223,253); /* #D0DFFD */
  --purple-dark: rgb(153,0,58); /* #99003A */
  --orange-light: rgb(251,212,153); /* #FBD499 */
  --green-light: rgb(161, 238, 160); /* #A1EEA0 */
  --brown-light: rgb(204,102,102); /* CC6666 */
}

body {
  background-color: var(--blue-light);
  background-image: url(/images/background_blumen_1.png);
}
div.container {
  background-color: var(--yellow-light);
}
a {
  color: var(--purple-dark);
}
a:hover {
  cursor:url(images/angelsewing_cursor.png),auto;
}

@media (min-width:576px) {
  .jumbotron {
    padding: 2rem 2rem;
  }
}
.jumbotron {
  background-color: var(--pink-light);
  border: 1px solid var(--purple-dark);
}
.jumbotron h1 {
  font-weight: bold;
}

small {
  font-size: 65%
}

header {
  border-bottom: 1px solid var(--pink-bright);
  border-left: 1.1em solid var(--pink-bright);
  padding-left: 10px;
  margin-bottom: 1.5rem;
}

hr {
  border-top: 1px solid var(--purple-dark);
}

h2 {
  font-size: 1.5rem;
  color: var(--purple-dark);
}
h4 {
  font-size: 1.1rem;
}

/* Sidebar styling */
.twitchy-background {
  border-right: 1px solid var(--purple-dark);
  background-color: var(--pink-light);
}
.sidebar-nav>.sidebar-brand {
  background-color: var(--pink-bright);
}
.sidebar-nav>.sidebar-brand a {
  color: var(--purple-dark);
}
.sidebar-nav li {
  background-color: var(--purple-dark);
}
.sidebar-nav li a {
  color: var(--pink-bright);
}
.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--brown-light);
}
.nav-divider {
  border-top: 1px solid var(--pink-light);
}
ul.sidebar_submenu li.active {
  background: var(--blue-light);
  border-left-color: var(--pink-light);
}
#menu-toggle {
  background-color: var(--pink-bright);
}
.badge-secondary {
  background-color: var(--pink-bright);
  color: var(--purple-dark);
}

.btn-primary {
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}
.btn-primary:hover {
  background-color: var(--brown-light);
  border-color: var(--purple-dark);
}
.btn-outline-primary {
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}
.btn-primary.disabled {
  color: var(--purple-dark);
  background-color: var(--pink-light);
  border-color: var(--purple-dark);
}


#page-content-wrapper div.container {
  padding-top: 15px;
}


/* Additional styles */

table {
  margin-bottom: 1rem;
}
td {
 vertical-align: top;
 border-bottom: 1px solid var(--pink-bright);
 padding-right: 1rem;
}
td:last-child {
	padding-right: 0;
}

div#asheader h1 a {
/* you can set your own image here */
   background: var(--green-light) url(/images/banner.jpg) no-repeat 0px 0px; 
   display: block;
   height: 93px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}


/* Slideshow carousel */
/* Taken from: https://www.w3schools.com/howto/howto_js_slideshow.asp */

* {box-sizing:border-box}

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

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px;
  color: var(--purple-dark);
  border: 1px solid var(--pink-bright);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 4px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 4px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: var(--pink-light);
}

/* Caption text */
.text {
  color: var(--purple-dark);
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 2px;
  width: 100%;
  text-align: center;
  width: 80%;
  position:relative;
  margin-left:auto;
  margin-right:auto;
}

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

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

.active, .dot:hover {
  background-color: #717171;
}

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

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

a:not([href]):not([tabindex]) {
  color: var(--purple-dark);
}

div.mySlides img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
