﻿@view-transition {
    navigation: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* COLORS and FONT-SIZES: */
:root {
    --soki-grey-light: #f8f9fa;
    --soki-grey-middle: #ececec;
    --soki-grey-dark: #939393;
    --soki-black: #333333;
    --soki-blue: #003865; /*rgb(0,56,101)*/
    --soki-blue-middle: #237cc4; /*rgb(35, 124, 196)*/
    --soki-blue-light: #addaff; /*rgb(173, 218, 255)*/
    --soki-red: #C20000;
    --soki-font-small: 0.9rem;
    --soki-font-middle: 1.1rem;
    --soki-navbar-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgb(0,56,101)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/></svg>");
    --soki-navbar-toggler-active-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgb(255,255,255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.sokiblue {
    color: var(--soki-blue);
}
.sokired {
    color: var(--soki-red);
}
.bgsokiblue {
    background-color: var(--soki-blue);
}
.bggreylight {
    background-color: rgba(128, 128, 128, 0.15);
}
.bggreymiddle {
    background-color: rgba(128, 128, 128, 0.05);
}
.bgblue {
    background-color: var(--soki-blue);
}
.bgbluemiddle {
    background-color: var(--soki-blue-middle);
}
.bgbluelight {
    background-color: var(--soki-blue-light);
}

/* NAVIGATION: */
.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    /*background-color: var(--soki-blue); /* rgba(0, 0, 0, 0.2);*/
    border: 1px solid var(--soki-blue-middle);
    border-radius: 3px;
}
.navbar-toggler:not(.collapsed), .navbar-toggler:hover {
    border: 1px solid #ffffff;
    background-color: var(--soki-blue)
}
.navbar-toggler-icon {
    background-image: var(--soki-navbar-toggler-icon-bg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon, .navbar-toggler:hover .navbar-toggler-icon {
    background-image: var(--soki-navbar-toggler-active-icon-bg);
}
img.logo {
    height: 75px;
    background-color: #ffffff;
}
.navbarmain {
    min-width: 340px;
    background-color: var(--soki-grey-middle);
    font-size: 1.3rem;
    font-weight: bold;
}
a.nav-link-main, a.nav-link {
    color: var(--soki-blue);
    /*background-color: rgba(255,255,255,0.4);*/
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: .4s ease;
    margin-left: 2px;
}
a.nav-link-main:hover, a.nav-link:hover, a.nav-link-main-active, a.nav-link-sub-active {
    color: #ffffff;
    background-color: var(--soki-blue);
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease;
}
.navbarsub {
    background-color: var(--soki-grey-light);
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 1.3rem;
    font-weight: normal;
    overflow: hidden;
}
nav.navbarsub * a {
    padding: 0.5rem;
    font-weight: normal;
    /*background-color: rgba(255,255,255,0.7);*/
}
ul.navbarsub * a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-weight: normal;
    /*background-color: rgba(255,255,255,0.7);*/
}
.navbarsub * a:hover {
    font-weight: normal;
}
.navbarsub * a:hover, a.nav-link-sub-active {
    color: #ffffff;
    background-color: var(--soki-blue-middle);
}
a.nav-link-red {
    color: var(--soki-red);
}

#scrolltopbtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: bold;
    padding: 5px 5px 0px 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--soki-blue-middle);
    border-radius: 3px;
}

/* FOOTER: */
footer {
    background-color: rgba(128, 128, 128, 0.35);
}
footer.startfooter * a {
    color: #ffffff;
}
footer.startfooter * a:hover {
    color: var(--soki-blue-middle);
}
div.smallfooter {
    font-size: 0.85em;
    text-align: center;
}
.wafootericon {
    width: 1.2rem;
    height: 1.2rem;
}
.wafootericon:hover {
    transform: scale(1.3);
    background-color: var(--soki-blue-middle);
}

/* GENERAL: */
html {
    min-width: 340px;
    scroll-behavior: smooth;
}
body {
    min-width: 340px;
    font-family: SourceSansPro, sans-serif, Arial, Helvetica;
    font-size: 1.3rem;
}

div.bodycontainer {
    min-width: 340px;
    background-color: #ffffff;
    /*margin-top: 101px;*/
    min-height: 40vh;
}

section.contentsection {
    padding-bottom: 1.5rem;
}

section.contentwithoutsubnav {
    padding-top: 1.5rem;
}

ul {
    list-style-type: square;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: var(--soki-blue-middle);
}

a.nodeco {
    color: rgb(33, 37, 41);
}

a:hover {
    color: var(--soki-black);
}

a.extern {
    padding-right: 12px;
    background: url('/wwwroot/img/externlink.gif') no-repeat 100% 50%;
}

.btn-primary, .btn-danger {
    font-size: 1.3rem;
    font-weight: bold;
    background-color: var(--soki-blue);
    border: 1px solid white;
    border-radius: 0px;
}
.btn-danger {
    background-color: var(--soki-red);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus-visible {
    color: var(--soki-blue);
    background-color: #ffffff;
    border: 1px solid var(--soki-blue);
}
.btn-danger:hover {
    color: var(--soki-red);
    background-color: #ffffff;
    border: 1px solid var(--soki-red);
}

label {
    font-weight: bold;
}

img.fontsizeicon {
    max-width: 1.5rem;
    max-height: 1.5rem;
}

h1, h2, h3, h4, h5 {
    color: var(--soki-blue);
}

p {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

div.pmarginbottom {
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.sokismallfont {
    font-size: var(--soki-font-small);
}
.sokimiddlefont {
    font-size: var(--soki-font-middle);
}

a.card img,
a.hoverimgage img {
    transition: transform 0.3s ease-in-out;
}
a.card, a.hoverimgage:hover div {
    overflow: hidden;
}
a.card:hover img, a.hoverimgage:hover img {
    transform: scale(1.3);
}
.card-text, a.card:hover *, .card-text:hover {
    font-weight: normal;
}
a.card:hover *, .card-text:hover {
    color: var(--soki-blue-middle);
}
.refcard-text-sub, .teamcard-text-sub {
    font-style: italic;
    font-size: 1rem;
}
.card, .refcard {
    border: none;
    border-radius: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
div.refcard {
    margin-top: 1rem;
    min-height: 10rem;
}
.refcard-image {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}
.refcard-body {
    height: 100%;
    background-color: var(--soki-grey-light);
    padding: 0.2rem 0.4rem 0.2rem 0.4rem;
}
.teamcard-image {
    background-color: var(--soki-grey-light);
}

.card-body-small {
    padding: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    text-align: justify;
}
.card-body-small-titlediv {
    display: flex;
    text-align: left;
}
.card-body-small-titlediv img {
    width: 15%;
    height: 15%;
}
.card-body-small-titlediv h4 {
    padding-top: 0.2rem;
    padding-left: 0.2rem;
    text-align: left;
}

.cardlistdiv {
    margin-bottom: 1.5rem;
}

.transformcontainer img {
    transition: transform 0.3s ease-in-out, opacity 1ms 0.3s ease-in-out;
}

.opacitycontainer img {
    transition: opacity 0.3s ease-in-out;
}

div.rotateimg {
    perspective: 750px;
    perspective-origin: center;
}

a.rotateimg * img.img2 {
    border: 1px solid #FFFFFF;
    transform: rotateX(-270deg);
}

a.rotateimg:hover > div > div > .img1, a.rotateimghovered > div > div > .img1 {
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
}

a.rotateimg:hover > div > div > .img2, a.rotateimghovered > div > div > .img2 {
    transform: rotate3d(1, 0, 0, -360deg);
}

a.fadeimg:hover > div > div > .img1 {
    opacity: 0;
    visibility: hidden;
}

a.fadeimg > div > div > .img2 {
    opacity: 0;
    visibility: hidden;
}

a.fadeimg:hover > div > div > .img2 {
    opacity: 1.0;
    visibility: visible;
}

div.grid3x3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    width: 100%;
    grid-gap: 0.5rem;
    padding: 0.5rem;
    max-width: 695px;
}

div.grid3x3 > a {
    display: flex;
    height: 100%;
    justify-items: center;
    align-items: center;
}

div.grid3x3 img {
    width: 100%;
}

div.grid3x3 > a > div {
    display: flex;
    height: 100%;
    width: 100%;
    justify-items: center;
    align-items: center;
}

span.errmsg {
    color: red;
    font-weight: bold;
}

div.map {
    width: 100%;
    height: 250px;
}
div.bigmap {
    width: 100%;
    height: 25rem;
}
.ol-control button {
    color: #ffffff;
    background-color: var(--soki-blue-middle);
}

.blockquote {
    background-image: url('/wwwroot/img/icons/quote.svg');
    background-repeat: no-repeat;
    background-position: top left;
    padding: 0px 50px 0px 50px;
}

div.popupbackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(128, 128, 129, 0.8);
    z-index: 999;
}
div.borderradius {
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
div.reloadicon {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(128, 128, 128, 0.75);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
div.reloadicon span {
    font-size: 12.5em;
    animation: spin 3s infinite linear;
}

a.btninetsupportimg {
    text-align: center;
}
a.btninetsupportimg > div > .img2 {
    display: none;
}
a.btninetsupportimg:hover > div > .img1 {
    display: none;
    transform: scale(1.3) !important;
}
a.btninetsupportimg:hover > div > .img2 {
    display: inline;
    transform: scale(1.3) !important;
}
a.btninetsupporttext {
    font-size: 1.8rem !important;
    color: #ffffff;
    background-color: var(--soki-blue);
    align-items: center;
    align-content: center;
    border: 10px solid #ffffff;
}
a.btninetsupporttext:hover {
    color: var(--soki-red);
    background-color: var(--soki-grey-light);
    border: 10px solid var(--soki-blue);
}

.oeffzeitTitel {
    font-weight: bold;
    color: var(--soki-blue)
}

.preisTable {
    width: 100%;
    margin-bottom: 1.5rem;
}
.preisTable td {
    padding: 2px 4px 2px 4px;
}
.preisTable tr:nth-child(odd) {
    background-color: var(--soki-grey-middle);
    border-bottom: 3px solid #ffffff;

}
.preisTable tr:nth-child(even) {
    background-color: var(--soki-grey-light);
    border-bottom: 3px solid #ffffff;

}
.preisTableText {
    font-weight: bold;
}
.preisTableEinheit {
    font-size: var(--soki-small-font);
    text-align: right;
    width: 7rem;
}
.preisTablePreis {
    font-weight: bold;
    text-align: right;
    color: var(--soki-blue-middle);
    width: 11rem;
}

div.greytitleline {
    padding: 2px 4px 2px 4px;
    background-color: var(--soki-grey-middle);
    border-bottom: 3px solid #ffffff;
}
div.greylistlinelight {
    padding: 2px 4px 2px 4px;
    background-color: var(--soki-grey-light);
    border-bottom: 3px solid #ffffff;
}
div.greylistlinedark {
    padding: 2px 4px 2px 4px;
    background-color: var(--soki-grey-middle);
    border-bottom: 3px solid #ffffff;
}
div.greylistlinelight a, div.greylistlinedark a {
    font-weight: bold;
}

.linkdescription {
    font-size: var(--soki-small-font);
}

ul.greylistul {
    list-style: none;
    padding-left: 0px;
}
ul.greylistul li:nth-child(odd) {
    background-color: var(--soki-grey-middle);
    border-bottom: 3px solid #ffffff;
}

ul.greylistul li:nth-child(even) {
    background-color: var(--soki-grey-light);
    border-bottom: 3px solid #ffffff;
}
div.hoverdiv {
    cursor: pointer;
}
/*changes to all devices with less than 768px*/
@media (max-width: 768px) {
    img.logo {
        height: 50px;
    }
    /*div.bodycontainer {
        margin-top: 76px;
    }*/
    .nav-link {
        padding: 0px;
    }
    a.nav-link-main:hover, a.nav-link-main-active {
        padding-left: 0.5rem;
    }
    .navbarsub * {
        font-size: var(--soki-small-font);
    }
    div.smallfooter {
        font-size: 0.7em;
    }
    .card-body-small-titlediv img {
        width: 10%;
        height: 10%;
    }
    a.btninetsupporttext {
        font-size: 1.3rem !important;
    }
}
/*X-Small devices (portrait phones, less than 576px)*/
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .navbarsub * .navbar-nav {
        margin-left: auto;
        margin-right: 0
    }

    div.grid3x3 {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    div.grid3x3 > a {
        /*grid item*/
    }
    section.grid3x3 {
        /*height: 100vh;*/
        height: 100%;
        display: flex;
        align-items: center;
    }
    .linkdescription {
        font-size: var(--soki-font-middle);
    }
}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}
/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}
/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
}