/*
    Leuchtmittelfinder oncliQ 2023

    orange: #eb5906
    grey:   #e5e5e5
    black:  #333
*/

@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-Regular.eot');
    src: url('../fonts/Kanit-Regular.woff2') format('woff2'),
        url('../fonts/Kanit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-Light.eot');
    src: url('../fonts/Kanit-Light.woff2') format('woff2'),
        url('../fonts/Kanit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    background: #f9f9f9;
    color: #333;
    font-family: Kanit, sans-serif;
}
h2 {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    margin-top: 18px;
    margin-bottom: 30px;
}
img {
    max-width: 100%;
}
.maxwidth {
    max-width: 960px;
    margin: 0 auto;
}
.thumbnail {
    transition: all 0.3s ease;
    background: #e5e5e5;
    text-align: center;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgb(0 0 0 / 20%);
}
.thumbnail img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.thumbnail h3 {
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    padding-bottom: 5px;
}
.thumbnail .caption {
    margin-top: 4px;
}
.thumbnails a:focus,
.thumbnails:hover a {
    text-decoration: none;
}
.thumbnail:hover {
    transition: all 0.6s ease;
    background: #eb5906;
    color: #fff;
}
.thumbnail:hover h3 {
    transition: all 0.6s ease;
    color: #fff;
}
.btn-group {
    margin-top: 30px;
}
.well {
    margin-top: 15px;
}
.steps {
    margin: 25px 0 0 0;
    padding: 0;
    position: relative;
}
.steps::after {
    content: "";
    background:  #e5e5e5;
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
}
.steps li {
    background: #e5e5e5;
    display: inline-block;
    border: 2px solid #e5e5e5;
    margin: 0 10px;
    padding: 4px 12px;
    border-radius:15px;
    position: relative;
    z-index: 2;
}
.steps li a {
    color: #333;
}
.steps li.active {
    background-color: #333;
    color: #e5e5e5;
}
.steps li a:hover {
    text-decoration: none;
}


@media all and (max-width: 767px) {
    .col-sm-4 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .thumbnail {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .thumbnail h3 {
        font-size: 16px;
    }
}
@media all and (max-width: 480px) {
    .thumbnails .col-xs-4 {
        width: 50%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .steps {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 3px;
        padding-right: 3px;
    }
    .steps li {
        margin-left: 2px;
        margin-right: 2px;
    }
}