﻿:root {
    --sliderwidth: 25vw;
    --sliderheight: 10vh;
}

div.slider {    
    overflow: hidden;
    width: var(--sliderwidth);
    height: var(--sliderheight);   
    min-height: 80px;
    min-width: 80px;
    position:absolute;
    top:85%;
    bottom:100%;
    left: 10%;
    right:0%;
}

div.slideroverflow {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 10;
    top: 0;
}


div.slider-item {
    display: inline-block;
    position: static;
    width: var(--sliderwidth);
    height: 100%;
    font-size: 1.7vh;
    float: none;
    white-space: normal;
}

div.slider-default {
    display: absolute;
    position: static;
    width: var(--sliderwidth);
    height: 100%;
    top: 0;
    left: 0;
    white-space: normal;
}


div.slider-content {
    position: absolute;
    margin: 0;
    padding: 0;
    border: 0;
    left: 0px;
    max-width: 10000px;
    width:fit-content;
    height: var(--sliderheight);
    white-space: nowrap;
}

div.slider-item strong {
  color:lawngreen;
}

div.slider-item a, div.slider-item a:visited {
    color: orange;
    text-decoration: none;
}

div.slider-item a:hover {
    color: orange;
    text-decoration: solid;
}


