
/* ==========================================================================
   Main Stylesheet T-Raumreise | アキラ
   Copyright 2014–2026 Akira
   ========================================================================== */

/* 1. Design Tokens (CSS Custom Properties)
   -------------------------------------------------------------------------- */

:root {
  
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --azure-sorbt: #ef32d9; /* soft ananas */
  --azure-pop:  #89fffd; 
  --disco-sorbet: #4ecdc4; /* soft ananas */
  --disco-mint:  #556270; 


/* Piña Colada Theme */

  
  --pina-cream:  #FFF2D8; /* kokos/vanille */
  --pina-sorbet: #FFE3A6; /* soft ananas */
  --pina-mint:  #CFF5E7; /* pastel mint */
  --pina-logo: #0B1024;
  --pina-copy: #3A4266;
  --deep-red: #500000;
  --bg-light-gradient: radial-gradient(1100px 700px at 20% 10%,
          rgba(150, 120, 255, 0.20) 0%,
          rgba(150, 120, 255, 0.00) 60%),
        radial-gradient(900px 650px at 80% 18%,
          rgba(70, 210, 255, 0.16) 0%,
          rgba(70, 210, 255, 0.00) 55%),
        linear-gradient(165deg,
          #f6f7ff 0%,
          #eef3ff 45%,
          #fbfbff 100%);
  
);

/* Default = Light Theme */
  --bg: #500000;
  --fg: #f0f0f0;
  --ag: rgb(255, 204, 204);
  /* Logo – Light Theme */
  --logo-main:    #f0f0f0;
  --copy: #f0f0f0;


  /* Purple Theme */

  --purple-night: #2E154F;
  --purple-deep:  #0E0915;
  --purple-logo: #00FF00;
  --purple-copy: #999999;

  --bg-dark-gradient: 

 /* === t-raumreise: Dark Theme (Cosmic Night + Aurora) === */
 background-color: #000;

  }

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--bg-dark-gradient);
    --fg: #999;
    --ag: #00FF00;
    --outside-bg: #EEF2FF; /* Hintergrund außerhalb des Rahmens */
    /* Dark Theme: Logo */
    --logo-main:       var(--purple-logo);
    --copy: var(--purple-copy);

  }
}





/* Logo übernimmt automatisch die passende Farbe */

.t-raumreise-logo {
  display: block;
  margin: 40px auto 0 auto;     /* zentriert + Abstand nach oben */
  max-width: 500px;             /* responsive Limit */
  width: 70%;                   /* für mobile */
  height: auto;
  color: var(--logo-main);      /* damit currentColor im SVG greift */
}



html {
    background: var(--bg);
    touch-action: manipulation;
    font-size: 15px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transform-style: preserve-3d;
}

body {
     background: transparent;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--fg);
    -moz-osx-font-smoothing: grayscale;
    fill: currentColor;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transform-style: preserve-3d;
    perspective: 0;
    overflow: hidden;
    transform-origin:0 0
}

body * {
    -moz-user-drag: -moz-none;
    user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}



a, a:active, a:visited {
    color: #d8cfe6;
    text-decoration: none;
}

a:active, a:hover {
    color: #8860bf;
}

@media only screen and (max-width: 600px) {
    html {
        font-size:14px
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size:13px
    }
}

/* --------------------------------------------------------------------------
   UI: Custom scrollbars
   -------------------------------------------------------------------------- */


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

::-webkit-scrollbar-button:end:increment, ::-webkit-scrollbar-button:start:decrement {
  display:block;
  height:3px
}

::-webkit-scrollbar-button:vertical:increment {
  background-color: transparent;
}

::-webkit-scrollbar-track-piece {
  background-color:rgba(0,0,0,.2);
  border-radius:3px
}

::-webkit-scrollbar-thumb:vertical {
  height:10px;
  background-color:rgba(0,0,0,.2);
  border-radius:3px
}

::-webkit-scrollbar-thumb:vertical:hover {
  background-color:rgba(0,0,0,.4);
}

::-webkit-scrollbar-thumb:horizontal {
  width:50px;
  background-color:rgba(0,0,0,.2);
  border-radius:3px
}

::-webkit-scrollbar-thumb:horizontal:hover {
  background-color:rgba(0,0,0,.4);
}

/* --------------------------------------------------------------------------
   Component: sb-scroll (custom scrolling)
   -------------------------------------------------------------------------- */


.sb-scroll-container {
  position:absolute;
  left:0;
  top:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%
}

.sb-scrollable {
  position:absolute;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  width:100%;
  z-index:500
}

.sb-scrollbar-y {
  position:absolute;
  right:0;
  top:15px;
  bottom:80px;
  width:10%;
  max-width:60px;
  z-index:10000
}

.sb-scrollbar-y-track {
  position:absolute;
  left:50%;
  top:20px;
  bottom:20px;
  width:8px;
  margin-left:-4px;
  background-color:rgba(65,80,92,.1);
  border-radius:4px;
  -webkit-transition-property:background-color;
  transition-property:background-color;
  -webkit-transition-duration:.3s;
  transition-duration:.3s;
}

.sb-scrollbar-y-handle {
  position:absolute;
  width:100%;
  height:40px;
  border-radius:5px;
  background-color:rgba(65,80,92,.3);
  -webkit-transition-property:background-color;
  transition-property:background-color;
  -webkit-transition-duration:.3s;
  transition-duration:.3s;
}

.highlight .sb-scrollbar-y-track {
  background-color:rgba(147,154,159,.5);
}

.highlight .sb-scrollbar-y-handle {
  background-color:rgba(65,80,92,.8);
}

.style-dark .sb-scrollbar-y-track {
  background-color:rgba(255,255,255,.15);
}

.style-dark .highlight .sb-scrollbar-y-track, .style-dark .sb-scrollbar-y-handle {
  background-color:rgba(255,255,255,.2);
}

.style-dark .highlight .sb-scrollbar-y-handle {
  background-color:rgba(255,255,255,.6);
}

.style-light .sb-scrollbar-y-track {
  background-color:rgba(0,0,0,.05);
}

.style-light .sb-scrollbar-y-handle {
  background-color:rgba(0,0,0,.1);
}

.style-light .highlight .sb-scrollbar-y-track {
  background-color:rgba(0,0,0,.15);
}

.style-light .highlight .sb-scrollbar-y-handle {
  background-color:rgba(0,0,0,.5);
}

/* --------------------------------------------------------------------------
   Component: pips / pagination dots
   -------------------------------------------------------------------------- */


.pip {
  border:2px solid #FFF;
  background-color:rgba(0,0,0,.4);
  -webkit-transition-property:background-color, border-width;
  transition-property:background-color, border-width;
  -webkit-transition-duration:.3s;
  transition-duration:.3s;
  border-radius:100%;
  cursor:pointer;
  overflow:hidden;
  text-align:center;
  line-height:20px;
  text-indent:-50px;
  box-sizing:border-box;
  box-shadow:0 0 5px rgba(0,0,0,.32)
}

.pip.active {
  border-width:5px;
  background-color:rgba(255,255,255,.4);
}

.pip:hover {
  background-color:rgba(255,255,255,.7);
}

.home-page .sb-scrollbar-y {
  right:0;
  top:135px;
  bottom:80px;
  width:10%
}

.icons {
  display:none;
}

.ratio-1 {
  width:1440px;
  height:1440px
}

.social {
  height:30px
}


.close-btn {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(-50px, -50px, 0);
    transform: translate3d(-50px, -50px, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    z-index: 3001;
    cursor: pointer;
    color: var(--purple-copy);
}

.close-btn .icon {
    display: block;
    width: 30px;
    height: 30px;
    fill: var(--fg);
    cursor: pointer;
    margin-left: 5px;
    margin-top: 5px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transform: translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
}

.close-btn:after {
    content: '';
    position: absolute;
    display: block;
    left: -5px;
    top: -5px;
    width: 40px;
    height:40px
}

.close-btn.active {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
    -webkit-transform: translate3d(20px, 20px, 0);
    transform: translate3d(20px, 20px, 0);
}

.close-btn.active:active .icon, .close-btn.active:hover .icon {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    margin-left: 0;
    margin-top:0
}




.about-btn {
    position: absolute;
    right: 0;
    top: 10px;
    width: 10%;
    max-width: 60px;
    height: 120px;
    z-index:550
}

.about-btn a {
    display: block;
    position: absolute;
    left: 50%;
    top: 45px;
    -webkit-transform: translate3d(-50%, 0, 0) rotate(90deg);
    transform: translate3d(-50%, 0, 0) rotate(90deg);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05rem;
    z-index: 50;
    cursor: pointer;
    width: 90px;
    border-radius: 4px;
    color: var(--fg);
    opacity: 0;
    animation: about-btnIntro 0.8s ease-out forwards;
    animation-delay: 1s;
}

.about-btn a:hover {
    color: var(--ag);
    text-shadow:0 0 1px rgba(0, 0, 0, .1)
}




@media only screen and (max-width: 480px) {
    .about .content .info-bar {
        padding:60px 40px
    }

    .about .content .info-bar .page-title {
        font-size:2rem
    }

    .about .content .info-bar h3 {
        font-size:1.2rem
    }
}




.copyright {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 10%;
    max-width: 60px;
    height: 80px;
    z-index:550
}

.copyright span {
    font-family: HelveticaNeue, Arial, sans-serif;
    text-align: right;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 50;
    cursor: default;
    line-height: 40px;
    width: 70px;
    height: 40px;
    color: var(--copy);
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate3d(-50%, 0, 0) rotate(90deg);
    transform:translate3d(-50%, 0, 0) rotate(90deg);
}

.copyright.dark-mode span {
    color:rgba(255, 255, 255, .3);
}

.copyright.light-mode span {
    color:rgba(0, 0, 0, .3);
}

@media (orientation: landscape) {
    html.ipad.ios7 > body {
        position: fixed;
        bottom: 0;
        width: 100%;
        height:672px !important
    }
}

@media only screen and (max-width: 1520px) {
    .home-thumb {
        width:31%
    }
}

@media only screen and (max-width: 1000px) {
    .home-list {
        padding:70px 7%
    }

    .home-thumb {
        width: 46%;
        margin: 2% 2% 40px;
        font-size:1rem
    }

    .home-panel {
        width: 46%;
        margin:0 2% 20px
    }
}

@media only screen and (max-width: 768px) {
    .sb-scrollbar-y {
        width:6%
    }

    .sb-scrollbar-y-track {
        width: 8px;
        margin-left:-4px;
    }

    .copyright {
        width:8%
    }

    .close-btn.active {
        -webkit-transform: translate3d(15px, 15px, 0);
        transform:translate3d(15px, 15px, 0)
    }

    .page-title {
        top: 40px;
        font-size:2.3rem
    }

    .slides--framed {
        padding:110px 60px 60px
    }

    .slides--framed .page-title {
        top:40px
    }

    .slides--framed .slide + .slide {
        margin-top:60px
    }

    .center-full {
        padding:0 40px
    }

    .video-links {
        padding-bottom:20px
    }
}

@media only screen and (max-width: 600px) {
    .sb-scrollbar-y {
        width:8%
    }

    .sb-scrollbar-y-track {
        width: 6px;
        margin-left: -3px;
        border-radius:3px
    }

    .copyright {
        width:10%
    }

    .home-thumb {
        width: 94%;
        margin: 3% 3% 30px;
        font-size: 1rem;
        line-height:35px
    }

    .home-panel {
        width: 94%;
        max-width: 400px;
        margin:3% 3% 30px
    }

    .home-page .sb-scrollbar-y {
        top: 130px;
        bottom:70px
    }
}

@media only screen and (max-width: 480px) {
    .site-title {
        font-size: 2rem;
        top: 20px;
        height:40px
    }

    .home-intro {
        font-size:1.1rem
    }

    .home-list {
        padding:50px 7%
    }

    .home-list hr {
        margin-bottom:40px
    }

    .home-thumb {
        width: 94%;
        margin: 3% 3% 30px;
        font-size: 1rem;
        line-height:35px
    }

    .sb-scrollbar-y {
        width:8%
    }

    .home-page .sb-scrollbar-y {
        top: 85px;
        bottom: 50px;
        width:8%
    }

    .close-btn .icon {
        width: 20px;
        height:20px
    }

    .close-btn.active {
        -webkit-transform: translate3d(10px, 10px, 0);
        transform:translate3d(10px, 10px, 0);
    }

    .about-btn {
        top:0
    }

    .about-btn a {
        font-size: 1.1rem;
        top:40px
    }

    .copyright {
        width: 8%;
        height:70px
    }

    .page-title {
        top: 30px;
        font-size: 1.4rem;
        left: 40px;
        right:40px
    }

    .slides--framed {
        padding:70px 40px 40px
    }

    .slides--framed .page-title {
        top:25px
    }

    .slides--framed .slide + .slide {
        margin-top:40px
    }

    .center-full {
        padding:0 40px
    }

    .video-link {
        width: 152px;
        max-width:152px
    }

    .content {
        padding-top:80px
    }

    .content a {
        white-space:normal
    }

    .content h2 {
        font-size: 1.3rem;
        line-height:1.3
    }

    .footer--info {
        padding-top: 60px;
        padding-bottom: 40px
    }
}

/* About-Page Content */

.about-main {
  max-width: 630px;
  padding: 0 40px;
  margin: 40px auto 60px;
  text-align: center;
}

.about-title {
  color: var(--logo-main);
  font-size: 30px;
  text-transform: uppercase;
  margin: 18px 0;
  line-height: 1.1;
}

.about-text {
  font-size: 12px;
  margin: 0 0 16px;
  color: var(--fg);
  opacity: 0.85;
}

/* Optional: Mobile etwas mehr Abstand zur Notch */
@media (max-width: 768px) {
  .about-main {
    margin-top: calc(80px + env(safe-area-inset-top));
  }
}


/* === Apple-Style Logo Animation === */

.t-raumreise-logo {
  opacity: 0;
  animation: logoIntro 0.8s ease-out forwards;
  animation-delay: 0.25s;
}
/* 5. Animationen
   -------------------------------------------------------------------------- */

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes copyrightIntro {
  100% {
    opacity: 1;
  }
}

@keyframes about-btnIntro {
  100% { 
      
      opacity: 1; 
      }
}


/* Logo-Animation global deaktivieren (z.B. per .no-logo-anim am <body>) */
.no-logo-anim .cosmic-logo,
.no-logo-anim .copyright span,
.no-logo-anim .about-btn a {
  animation: none !important;
  opacity: 1 !important;
}
@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.copyright span {
  opacity: 0;
  animation: copyrightIntro 0.8s ease-out forwards;
  animation-delay: 1s;
}

@keyframes copyrightIntro {
  100% { opacity: 1; }
}



.no-logo-anim .t-raumreise-logo,
.no-logo-anim .copyright span {
  animation: none !important;
  opacity: 1 !important;

}



.mdb-color.lighten-5 {
  background-color: #d0d6e2 !important; }

.mdb-color.lighten-4 {
  background-color: #b1bace !important; }

.mdb-color.lighten-3 {
  background-color: #929fba !important; }

.mdb-color.lighten-2 {
  background-color: #7283a7 !important; }

.mdb-color.lighten-1 {
  background-color: #59698d !important; }

.mdb-color {
  background-color: #45526e !important; }

.mdb-color-text {
  color: #45526e !important; }

.rgba-mdb-color-slight {
  background-color: rgba(69, 82, 110, 0.1); }

.rgba-mdb-color-light {
  background-color: rgba(69, 82, 110, 0.3); }

.rgba-mdb-color-strong {
  background-color: rgba(69, 82, 110, 0.7); }

.mdb-color.darken-1 {
  background-color: #3b465e !important; }

.mdb-color.darken-2 {
  background-color: #2e3951 !important; }

.mdb-color.darken-3 {
  background-color: #1c2a48 !important; }

.mdb-color.darken-4 {
  background-color: #1c2331 !important; }

.red.lighten-5 {
  background-color: #ffebee !important; }

.red.lighten-4 {
  background-color: #ffcdd2 !important; }

.red.lighten-3 {
  background-color: #ef9a9a !important; }

.red.lighten-2 {
  background-color: #e57373 !important; }

.red.lighten-1 {
  background-color: #ef5350 !important; }

.red {
  background-color: #f44336 !important; }

.red-text {
  color: #f44336 !important; }

.rgba-red-slight {
  background-color: rgba(244, 67, 54, 0.1); }

.rgba-red-light {
  background-color: rgba(244, 67, 54, 0.3); }

.rgba-red-strong {
  background-color: rgba(244, 67, 54, 0.7); }

.red.darken-1 {
  background-color: #e53935 !important; }

.red.darken-2 {
  background-color: #d32f2f !important; }

.red.darken-3 {
  background-color: #c62828 !important; }

.red.darken-4 {
  background-color: #b71c1c !important; }

.red.accent-1 {
  background-color: #ff8a80 !important; }

.red.accent-2 {
  background-color: #ff5252 !important; }

.red.accent-3 {
  background-color: #ff1744 !important; }

.red.accent-4 {
  background-color: #d50000 !important; }

.pink.lighten-5 {
  background-color: #fce4ec !important; }

.pink.lighten-4 {
  background-color: #f8bbd0 !important; }

.pink.lighten-3 {
  background-color: #f48fb1 !important; }

.pink.lighten-2 {
  background-color: #f06292 !important; }

.pink.lighten-1 {
  background-color: #ec407a !important; }

.pink {
  background-color: #e91e63 !important; }

.pink-text {
  color: #e91e63 !important; }

.rgba-pink-slight {
  background-color: rgba(233, 30, 99, 0.1); }

.rgba-pink-light {
  background-color: rgba(233, 30, 99, 0.3); }

.rgba-pink-strong {
  background-color: rgba(233, 30, 99, 0.7); }

.pink.darken-1 {
  background-color: #d81b60 !important; }

.pink.darken-2 {
  background-color: #c2185b !important; }

.pink.darken-3 {
  background-color: #ad1457 !important; }

.pink.darken-4 {
  background-color: #880e4f !important; }

.pink.accent-1 {
  background-color: #ff80ab !important; }

.pink.accent-2 {
  background-color: #ff4081 !important; }

.pink.accent-3 {
  background-color: #f50057 !important; }

.pink.accent-4 {
  background-color: #c51162 !important; }

.purple.lighten-5 {
  background-color: #f3e5f5 !important; }

.purple.lighten-4 {
  background-color: #e1bee7 !important; }

.purple.lighten-3 {
  background-color: #ce93d8 !important; }

.purple.lighten-2 {
  background-color: #ba68c8 !important; }

.purple.lighten-1 {
  background-color: #ab47bc !important; }

.purple {
  background-color: #9c27b0 !important; }

.purple-text {
  color: #9c27b0 !important; }

.rgba-purple-slight {
  background-color: rgba(156, 39, 176, 0.1); }

.rgba-purple-light {
  background-color: rgba(156, 39, 176, 0.3); }

.rgba-purple-strong {
  background-color: rgba(156, 39, 176, 0.7); }

.purple.darken-1 {
  background-color: #8e24aa !important; }

.purple.darken-2 {
  background-color: #7b1fa2 !important; }

.purple.darken-3 {
  background-color: #6a1b9a !important; }

.purple.darken-4 {
  background-color: #4a148c !important; }

.purple.accent-1 {
  background-color: #ea80fc !important; }

.purple.accent-2 {
  background-color: #e040fb !important; }

.purple.accent-3 {
  background-color: #d500f9 !important; }

.purple.accent-4 {
  background-color: #aa00ff !important; }

.deep-purple.lighten-5 {
  background-color: #ede7f6 !important; }

.deep-purple.lighten-4 {
  background-color: #d1c4e9 !important; }

.deep-purple.lighten-3 {
  background-color: #b39ddb !important; }

.deep-purple.lighten-2 {
  background-color: #9575cd !important; }

.deep-purple.lighten-1 {
  background-color: #7e57c2 !important; }

.deep-purple {
  background-color: #673ab7 !important; }

.deep-purple-text {
  color: #673ab7 !important; }

.rgba-deep-purple-slight {
  background-color: rgba(103, 58, 183, 0.1); }

.rgba-deep-purple-light {
  background-color: rgba(103, 58, 183, 0.3); }

.rgba-deep-purple-strong {
  background-color: rgba(103, 58, 183, 0.7); }

.deep-purple.darken-1 {
  background-color: #5e35b1 !important; }

.deep-purple.darken-2 {
  background-color: #512da8 !important; }

.deep-purple.darken-3 {
  background-color: #4527a0 !important; }

.deep-purple.darken-4 {
  background-color: #311b92 !important; }

.deep-purple.accent-1 {
  background-color: #b388ff !important; }

.deep-purple.accent-2 {
  background-color: #7c4dff !important; }

.deep-purple.accent-3 {
  background-color: #651fff !important; }

.deep-purple.accent-4 {
  background-color: #6200ea !important; }

.indigo.lighten-5 {
  background-color: #e8eaf6 !important; }

.indigo.lighten-4 {
  background-color: #c5cae9 !important; }

.indigo.lighten-3 {
  background-color: #9fa8da !important; }

.indigo.lighten-2 {
  background-color: #7986cb !important; }

.indigo.lighten-1 {
  background-color: #5c6bc0 !important; }

.indigo {
  background-color: #3f51b5 !important; }

.indigo-text {
  color: #3f51b5 !important; }

.rgba-indigo-slight {
  background-color: rgba(63, 81, 181, 0.1); }

.rgba-indigo-light {
  background-color: rgba(63, 81, 181, 0.3); }

.rgba-indigo-strong {
  background-color: rgba(63, 81, 181, 0.7); }

.indigo.darken-1 {
  background-color: #3949ab !important; }

.indigo.darken-2 {
  background-color: #303f9f !important; }

.indigo.darken-3 {
  background-color: #283593 !important; }

.indigo.darken-4 {
  background-color: #1a237e !important; }

.indigo.accent-1 {
  background-color: #8c9eff !important; }

.indigo.accent-2 {
  background-color: #536dfe !important; }

.indigo.accent-3 {
  background-color: #3d5afe !important; }

.indigo.accent-4 {
  background-color: #304ffe !important; }

.blue.lighten-5 {
  background-color: #e3f2fd !important; }

.blue.lighten-4 {
  background-color: #bbdefb !important; }

.blue.lighten-3 {
  background-color: #90caf9 !important; }

.blue.lighten-2 {
  background-color: #64b5f6 !important; }

.blue.lighten-1 {
  background-color: #42a5f5 !important; }

.blue {
  background-color: #2196f3 !important; }

.blue-text {
  color: #2196f3 !important; }

.rgba-blue-slight {
  background-color: rgba(33, 150, 243, 0.1); }

.rgba-blue-light {
  background-color: rgba(33, 150, 243, 0.3); }

.rgba-blue-strong {
  background-color: rgba(33, 150, 243, 0.7); }

.blue.darken-1 {
  background-color: #1e88e5 !important; }

.blue.darken-2 {
  background-color: #1976d2 !important; }

.blue.darken-3 {
  background-color: #1565c0 !important; }

.blue.darken-4 {
  background-color: #0d47a1 !important; }

.blue.accent-1 {
  background-color: #82b1ff !important; }

.blue.accent-2 {
  background-color: #448aff !important; }

.blue.accent-3 {
  background-color: #2979ff !important; }

.blue.accent-4 {
  background-color: #2962ff !important; }

.light-blue.lighten-5 {
  background-color: #e1f5fe !important; }

.light-blue.lighten-4 {
  background-color: #b3e5fc !important; }

.light-blue.lighten-3 {
  background-color: #81d4fa !important; }

.light-blue.lighten-2 {
  background-color: #4fc3f7 !important; }

.light-blue.lighten-1 {
  background-color: #29b6f6 !important; }

.light-blue {
  background-color: #03a9f4 !important; }

.light-blue-text {
  color: #03a9f4 !important; }

.rgba-light-blue-slight {
  background-color: rgba(3, 169, 244, 0.1); }

.rgba-light-blue-light {
  background-color: rgba(3, 169, 244, 0.3); }

.rgba-light-blue-strong {
  background-color: rgba(3, 169, 244, 0.7); }

.light-blue.darken-1 {
  background-color: #039be5 !important; }

.light-blue.darken-2 {
  background-color: #0288d1 !important; }

.light-blue.darken-3 {
  background-color: #0277bd !important; }

.light-blue.darken-4 {
  background-color: #01579b !important; }

.light-blue.accent-1 {
  background-color: #80d8ff !important; }

.light-blue.accent-2 {
  background-color: #40c4ff !important; }

.light-blue.accent-3 {
  background-color: #00b0ff !important; }

.light-blue.accent-4 {
  background-color: #0091ea !important; }

.cyan.lighten-5 {
  background-color: #e0f7fa !important; }

.cyan.lighten-4 {
  background-color: #b2ebf2 !important; }

.cyan.lighten-3 {
  background-color: #80deea !important; }

.cyan.lighten-2 {
  background-color: #4dd0e1 !important; }

.cyan.lighten-1 {
  background-color: #26c6da !important; }

.cyan {
  background-color: #00bcd4 !important; }

.cyan-text {
  color: #00bcd4 !important; }

.rgba-cyan-slight {
  background-color: rgba(0, 188, 212, 0.1); }

.rgba-cyan-light {
  background-color: rgba(0, 188, 212, 0.3); }

.rgba-cyan-strong {
  background-color: rgba(0, 188, 212, 0.7); }

.cyan.darken-1 {
  background-color: #00acc1 !important; }

.cyan.darken-2 {
  background-color: #0097a7 !important; }

.cyan.darken-3 {
  background-color: #00838f !important; }

.cyan.darken-4 {
  background-color: #006064 !important; }

.cyan.accent-1 {
  background-color: #84ffff !important; }

.cyan.accent-2 {
  background-color: #18ffff !important; }

.cyan.accent-3 {
  background-color: #00e5ff !important; }

.cyan.accent-4 {
  background-color: #00b8d4 !important; }

.teal.lighten-5 {
  background-color: #e0f2f1 !important; }

.teal.lighten-4 {
  background-color: #b2dfdb !important; }

.teal.lighten-3 {
  background-color: #80cbc4 !important; }

.teal.lighten-2 {
  background-color: #4db6ac !important; }

.teal.lighten-1 {
  background-color: #26a69a !important; }

.teal {
  background-color: #009688 !important; }

.teal-text {
  color: #009688 !important; }

.rgba-teal-slight {
  background-color: rgba(0, 150, 136, 0.1); }

.rgba-teal-light {
  background-color: rgba(0, 150, 136, 0.3); }

.rgba-teal-strong {
  background-color: rgba(0, 150, 136, 0.7); }

.teal.darken-1 {
  background-color: #00897b !important; }

.teal.darken-2 {
  background-color: #00796b !important; }

.teal.darken-3 {
  background-color: #00695c !important; }

.teal.darken-4 {
  background-color: #004d40 !important; }

.teal.accent-1 {
  background-color: #a7ffeb !important; }

.teal.accent-2 {
  background-color: #64ffda !important; }

.teal.accent-3 {
  background-color: #1de9b6 !important; }

.teal.accent-4 {
  background-color: #00bfa5 !important; }

.green.lighten-5 {
  background-color: #e8f5e9 !important; }

.green.lighten-4 {
  background-color: #c8e6c9 !important; }

.green.lighten-3 {
  background-color: #a5d6a7 !important; }

.green.lighten-2 {
  background-color: #81c784 !important; }

.green.lighten-1 {
  background-color: #66bb6a !important; }

.green {
  background-color: #4caf50 !important; }

.green-text {
  color: #4caf50 !important; }

.rgba-green-slight {
  background-color: rgba(76, 175, 80, 0.1); }

.rgba-green-light {
  background-color: rgba(76, 175, 80, 0.3); }

.rgba-green-strong {
  background-color: rgba(76, 175, 80, 0.7); }

.green.darken-1 {
  background-color: #43a047 !important; }

.green.darken-2 {
  background-color: #388e3c !important; }

.green.darken-3 {
  background-color: #2e7d32 !important; }

.green.darken-4 {
  background-color: #1b5e20 !important; }

.green.accent-1 {
  background-color: #b9f6ca !important; }

.green.accent-2 {
  background-color: #69f0ae !important; }

.green.accent-3 {
  background-color: #00e676 !important; }

.green.accent-4 {
  background-color: #00c853 !important; }

.light-green.lighten-5 {
  background-color: #f1f8e9 !important; }

.light-green.lighten-4 {
  background-color: #dcedc8 !important; }

.light-green.lighten-3 {
  background-color: #c5e1a5 !important; }

.light-green.lighten-2 {
  background-color: #aed581 !important; }

.light-green.lighten-1 {
  background-color: #9ccc65 !important; }

.light-green {
  background-color: #8bc34a !important; }

.light-green-text {
  color: #8bc34a !important; }

.rgba-light-green-slight {
  background-color: rgba(139, 195, 74, 0.1); }

.rgba-light-green-light {
  background-color: rgba(139, 195, 74, 0.3); }

.rgba-light-green-strong {
  background-color: rgba(139, 195, 74, 0.7); }

.light-green.darken-1 {
  background-color: #7cb342 !important; }

.light-green.darken-2 {
  background-color: #689f38 !important; }

.light-green.darken-3 {
  background-color: #558b2f !important; }

.light-green.darken-4 {
  background-color: #33691e !important; }

.light-green.accent-1 {
  background-color: #ccff90 !important; }

.light-green.accent-2 {
  background-color: #b2ff59 !important; }

.light-green.accent-3 {
  background-color: #76ff03 !important; }

.light-green.accent-4 {
  background-color: #64dd17 !important; }

.lime.lighten-5 {
  background-color: #f9fbe7 !important; }

.lime.lighten-4 {
  background-color: #f0f4c3 !important; }

.lime.lighten-3 {
  background-color: #e6ee9c !important; }

.lime.lighten-2 {
  background-color: #dce775 !important; }

.lime.lighten-1 {
  background-color: #d4e157 !important; }

.lime {
  background-color: #cddc39 !important; }

.lime-text {
  color: #cddc39 !important; }

.rgba-lime-slight {
  background-color: rgba(205, 220, 57, 0.1); }

.rgba-lime-light {
  background-color: rgba(205, 220, 57, 0.3); }

.rgba-lime-strong {
  background-color: rgba(205, 220, 57, 0.7); }

.lime.darken-1 {
  background-color: #c0ca33 !important; }

.lime.darken-2 {
  background-color: #afb42b !important; }

.lime.darken-3 {
  background-color: #9e9d24 !important; }

.lime.darken-4 {
  background-color: #827717 !important; }

.lime.accent-1 {
  background-color: #f4ff81 !important; }

.lime.accent-2 {
  background-color: #eeff41 !important; }

.lime.accent-3 {
  background-color: #c6ff00 !important; }

.lime.accent-4 {
  background-color: #aeea00 !important; }

.yellow.lighten-5 {
  background-color: #fffde7 !important; }

.yellow.lighten-4 {
  background-color: #fff9c4 !important; }

.yellow.lighten-3 {
  background-color: #fff59d !important; }

.yellow.lighten-2 {
  background-color: #fff176 !important; }

.yellow.lighten-1 {
  background-color: #ffee58 !important; }

.yellow {
  background-color: #ffeb3b !important; }

.yellow-text {
  color: #ffeb3b !important; }

.rgba-yellow-slight {
  background-color: rgba(255, 235, 59, 0.1); }

.rgba-yellow-light {
  background-color: rgba(255, 235, 59, 0.3); }

.rgba-yellow-strong {
  background-color: rgba(255, 235, 59, 0.7); }

.yellow.darken-1 {
  background-color: #fdd835 !important; }

.yellow.darken-2 {
  background-color: #fbc02d !important; }

.yellow.darken-3 {
  background-color: #f9a825 !important; }

.yellow.darken-4 {
  background-color: #f57f17 !important; }

.yellow.accent-1 {
  background-color: #ffff8d !important; }

.yellow.accent-2 {
  background-color: #ffff00 !important; }

.yellow.accent-3 {
  background-color: #ffea00 !important; }

.yellow.accent-4 {
  background-color: #ffd600 !important; }

.amber.lighten-5 {
  background-color: #fff8e1 !important; }

.amber.lighten-4 {
  background-color: #ffecb3 !important; }

.amber.lighten-3 {
  background-color: #ffe082 !important; }

.amber.lighten-2 {
  background-color: #ffd54f !important; }

.amber.lighten-1 {
  background-color: #ffca28 !important; }

.amber {
  background-color: #ffc107 !important; }

.amber-text {
  color: #ffc107 !important; }

.rgba-amber-slight {
  background-color: rgba(255, 193, 7, 0.1); }

.rgba-amber-light {
  background-color: rgba(255, 193, 7, 0.3); }

.rgba-amber-strong {
  background-color: rgba(255, 193, 7, 0.7); }

.amber.darken-1 {
  background-color: #ffb300 !important; }

.amber.darken-2 {
  background-color: #ffa000 !important; }

.amber.darken-3 {
  background-color: #ff8f00 !important; }

.amber.darken-4 {
  background-color: #ff6f00 !important; }

.amber.accent-1 {
  background-color: #ffe57f !important; }

.amber.accent-2 {
  background-color: #ffd740 !important; }

.amber.accent-3 {
  background-color: #ffc400 !important; }

.amber.accent-4 {
  background-color: #ffab00 !important; }

.orange.lighten-5 {
  background-color: #fff3e0 !important; }

.orange.lighten-4 {
  background-color: #ffe0b2 !important; }

.orange.lighten-3 {
  background-color: #ffcc80 !important; }

.orange.lighten-2 {
  background-color: #ffb74d !important; }

.orange.lighten-1 {
  background-color: #ffa726 !important; }

.orange {
  background-color: #ff9800 !important; }

.orange-text {
  color: #ff9800 !important; }

.rgba-orange-slight {
  background-color: rgba(255, 152, 0, 0.1); }

.rgba-orange-light {
  background-color: rgba(255, 152, 0, 0.3); }

.rgba-orange-strong {
  background-color: rgba(255, 152, 0, 0.7); }

.orange.darken-1 {
  background-color: #fb8c00 !important; }

.orange.darken-2 {
  background-color: #f57c00 !important; }

.orange.darken-3 {
  background-color: #ef6c00 !important; }

.orange.darken-4 {
  background-color: #e65100 !important; }

.orange.accent-1 {
  background-color: #ffd180 !important; }

.orange.accent-2 {
  background-color: #ffab40 !important; }

.orange.accent-3 {
  background-color: #ff9100 !important; }

.orange.accent-4 {
  background-color: #ff6d00 !important; }

.deep-orange.lighten-5 {
  background-color: #fbe9e7 !important; }

.deep-orange.lighten-4 {
  background-color: #ffccbc !important; }

.deep-orange.lighten-3 {
  background-color: #ffab91 !important; }

.deep-orange.lighten-2 {
  background-color: #ff8a65 !important; }

.deep-orange.lighten-1 {
  background-color: #ff7043 !important; }

.deep-orange {
  background-color: #ff5722 !important; }

.deep-orange-text {
  color: #ff5722 !important; }

.rgba-deep-orange-slight {
  background-color: rgba(255, 87, 34, 0.1); }

.rgba-deep-orange-light {
  background-color: rgba(255, 87, 34, 0.3); }

.rgba-deep-orange-strong {
  background-color: rgba(255, 87, 34, 0.7); }

.deep-orange.darken-1 {
  background-color: #f4511e !important; }

.deep-orange.darken-2 {
  background-color: #e64a19 !important; }

.deep-orange.darken-3 {
  background-color: #d84315 !important; }

.deep-orange.darken-4 {
  background-color: #bf360c !important; }

.deep-orange.accent-1 {
  background-color: #ff9e80 !important; }

.deep-orange.accent-2 {
  background-color: #ff6e40 !important; }

.deep-orange.accent-3 {
  background-color: #ff3d00 !important; }

.deep-orange.accent-4 {
  background-color: #dd2c00 !important; }

.brown.lighten-5 {
  background-color: #efebe9 !important; }

.brown.lighten-4 {
  background-color: #d7ccc8 !important; }

.brown.lighten-3 {
  background-color: #bcaaa4 !important; }

.brown.lighten-2 {
  background-color: #a1887f !important; }

.brown.lighten-1 {
  background-color: #8d6e63 !important; }

.brown {
  background-color: #795548 !important; }

.brown-text {
  color: #795548 !important; }

.rgba-brown-slight {
  background-color: rgba(121, 85, 72, 0.1); }

.rgba-brown-light {
  background-color: rgba(121, 85, 72, 0.3); }

.rgba-brown-strong {
  background-color: rgba(121, 85, 72, 0.7); }

.brown.darken-1 {
  background-color: #6d4c41 !important; }

.brown.darken-2 {
  background-color: #5d4037 !important; }

.brown.darken-3 {
  background-color: #4e342e !important; }

.brown.darken-4 {
  background-color: #3e2723 !important; }

.blue-grey.lighten-5 {
  background-color: #eceff1 !important; }

.blue-grey.lighten-4 {
  background-color: #cfd8dc !important; }

.blue-grey.lighten-3 {
  background-color: #b0bec5 !important; }

.blue-grey.lighten-2 {
  background-color: #90a4ae !important; }

.blue-grey.lighten-1 {
  background-color: #78909c !important; }

.blue-grey {
  background-color: #607d8b !important; }

.blue-grey-text {
  color: #607d8b !important; }

.rgba-blue-grey-slight {
  background-color: rgba(96, 125, 139, 0.1); }

.rgba-blue-grey-light {
  background-color: rgba(96, 125, 139, 0.3); }

.rgba-blue-grey-strong {
  background-color: rgba(96, 125, 139, 0.7); }

.blue-grey.darken-1 {
  background-color: #546e7a !important; }

.blue-grey.darken-2 {
  background-color: #455a64 !important; }

.blue-grey.darken-3 {
  background-color: #37474f !important; }

.blue-grey.darken-4 {
  background-color: #263238 !important; }

.grey.lighten-5 {
  background-color: #fafafa !important; }

.grey.lighten-4 {
  background-color: #f5f5f5 !important; }

.grey.lighten-3 {
  background-color: #eeeeee !important; }

.grey.lighten-2 {
  background-color: #e0e0e0 !important; }

.grey.lighten-1 {
  background-color: #bdbdbd !important; }

.grey {
  background-color: #9e9e9e !important; }

.grey-text {
  color: #9e9e9e !important; }

.rgba-grey-slight {
  background-color: rgba(158, 158, 158, 0.1); }

.rgba-grey-light, .md-pills .nav-link:hover {
  background-color: rgba(158, 158, 158, 0.3); }

.rgba-grey-strong {
  background-color: rgba(158, 158, 158, 0.7); }

.grey.darken-1 {
  background-color: #757575 !important; }

.grey.darken-2 {
  background-color: #616161 !important; }

.grey.darken-3 {
  background-color: #424242 !important; }

.grey.darken-4 {
  background-color: #212121 !important; }

.black, .picker__list-item:hover {
  background-color: #000 !important; }

.black-text, .btn.btn-link, .toast-close-button:hover,
.toast-close-button:focus {
  color: #000 !important; }

.rgba-black-slight {
  background-color: rgba(0, 0, 0, 0.1); }

.rgba-black-light {
  background-color: rgba(0, 0, 0, 0.3); }

.rgba-black-strong {
  background-color: rgba(0, 0, 0, 0.7); }



/*
#1f286e; blau*/