/* ############################################################
        font import
############################################################ */

@font-face {
    font-family: "PlutoBlack";

    src: url("../fonts/Pluto Sans Black.otf") format("opentype");
}

@font-face {
    font-family: "PlutoBold";

    src: url("../fonts/Pluto Sans Bold.otf") format("opentype");
}

@font-face {
    font-family: "PlutoMedium";

    src: url("../fonts/Pluto Sans Medium.otf") format("opentype");
}

@font-face {
    font-family: "PlutoRegular";

    src: url("../fonts/Pluto Sans Regular.otf") format("opentype");
}

@font-face {
    font-family: "PlutoLight";

    src: url("../fonts/Pluto Sans Light.otf") format("opentype");
}


/* ############################################################
        container media queries / width
############################################################ */

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 720px;
    }
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 1080px;
    }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
    }
}
/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1440px;
    }
}


/* ############################################################
        general styles
############################################################ */

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: PlutoLight;
    font-size: 1rem;
    line-height: 1.6;

    color: #4c4c4c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: PlutoMedium;

    color: #4c4c4c;
}

b {
    font-family: PlutoBold;
    font-weight: normal;
}

small {
    line-height: .5 !important;
}

.itb-vgheader {
    width: 100%;
    height: 320px;
    max-height: 320px;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;

    object-fit: cover;
    object-position: center;
}

.itb-fa-big {
    font-size: 5rem;
}

/** In Anlehnung an die Datenbankprozedur dbpax.text2html**/
.text2html {
    white-space: pre-line;
}

.truncate {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ############################################################
        util styles
############################################################ */

.text-primary {
    color: #009640 !important;
}

.text-primary-kundenkonto {
    color: #00afa5 !important;
}

.bg-primary {
    background-color: #009640 !important;
}

.bg-empty-card {
    opacity: .8;
}

.bg-accordion-kundenkonto {
    background-color: #00afa5 !important;
}
.bg-accordion-kundenkonto:hover {
    background-color: #005b6d !important;
}

.shadow {
    transition: all .15s ease-out;

    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .1);
}

.pointer {
    cursor: pointer;
}

a.leikat-link {
    text-decoration: none;

    color: #4c4c4c;
}

.uebschrift-icon-box {
    width: 24px;

    text-align: center;
}

.bestellungen-hover:hover {
    background-color: #005725 !important;
}

ul.list-group-flush > .list-group-item:first-child {
    border-top: none;
}
ul.list-group-flush > .list-group-item:last-child {
    border-bottom: none;
}

.drop-area {
    outline: 2px dashed #e9ecef;
    outline-offset: -10px;
}

.bottom-btn-row {
    position: fixed;
    right: 20px;
    bottom: 0;
    z-index: 20;
}

.itb-border-red {
    border: 1px solid #dc3545 !important;
}

.itb-brand-img-small {
    height: 32px;
}


/* ############################################################
        sidebar menu styles
############################################################ */

.itb-sidebar-menu-wrapper {
    position: fixed;
    top: 356px;
    right: -256px;
    z-index: 20;

    width: 320px;

    transition: right .3s ease-in-out;
}
.itb-sidebar-menu-wrapper:hover {
    right: 0;
}

.itb-sidebar-btn {
    width: 64px;
    height: 64px;

    text-align: center;
}

.itb-sidebar-content {
    width: 256px;
    padding: 1rem;
}

.itb-sidebar-link {
    display: block;
    padding: .4rem;
}


/* ############################################################
        loader styles
############################################################ */

.loader {
    width: 24px;
    height: 24px;
    margin: 0 auto;

    animation: spin 2s linear infinite;

    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #009640; /* Light blue */
    border-radius: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ############################################################
        button styles
############################################################ */

.breadcrumb-container > ul {
    list-style: none;
}

.breadcrumb-container > ul > li {
    position: relative;
    z-index: 1;

    display: inline-block;
    margin-right: 1.6rem;

    color: #fff;
    background-color: #009640;
}

.breadcrumb-container > ul > li::after {
    position: absolute;
    right: -42px;
    bottom: 0;

    content: "";

    border-top: 21px solid transparent;
    border-right: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 21px solid #009640;
}
.breadcrumb-container > ul > li::before {
    position: absolute;
    bottom: 0;
    left: -21px;
    z-index: -10;

    content: "";

    border-top: 21px solid #009640;
    border-right: 21px solid #009640;
    border-bottom: 21px solid #009640;
    border-left: 21px solid transparent;
}



.breadcrumb-container > ul > li:hover {
    background-color: #cfd8dc;
}
.breadcrumb-container > ul > li:hover::before {
    border-top: 21px solid #cfd8dc;
    border-right: 21px solid #cfd8dc;
    border-bottom: 21px solid #cfd8dc;
    border-left: 21px solid transparent;
}
.breadcrumb-container > ul > li:hover::after {
    border-top: 21px solid transparent;
    border-right: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 21px solid #cfd8dc;
}

.breadcrumb-container > ul > li > a {
    display: block;
    padding: 10px;

    font-size: 14px;

    text-decoration: none;

    color: #fff;
}

.breadcrumb-container > ul > li:last-child {
    background-color: #78909c;
}

.breadcrumb-container > ul > li:last-child::before {
    position: absolute;
    bottom: 0;
    left: -21px;
    z-index: -10;

    content: "";

    border-top: 21px solid #78909c;
    border-right: 21px solid #78909c;
    border-bottom: 21px solid #78909c;
    border-left: 21px solid transparent;
}

.breadcrumb-container > ul > li:last-child > a {
    color: #fff;
}

.breadcrumb-container > ul > li:hover:first-child::before,
.breadcrumb-container > ul > li:hover:last-child::after,
.breadcrumb-container > ul > li:first-child::before,
.breadcrumb-container > ul > li:last-child::after {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
}


/* ############################################################
        button styles
############################################################ */

.btn {
    border-radius: 3px;
}

/*.btn-primary {
    background-color: #009640 !important;
    border: none;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #005725 !important;
}*/

.btn-kundenkonto {
    border: none;
    background: linear-gradient(to bottom left,#00afa5 0%,#007d96 100%);
    background-color: #009640 !important;
}
.btn-kundenkonto:hover,
.btn-kundenkonto:active,
.btn-kundenkonto:focus {
    background: linear-gradient(to bottom left,#00afa5 0%,#007d96 0%);
    background-color: #005b6d;
}


/* ############################################################
        navigation styles
############################################################ */

.navbar.navbar-light ul.navbar-nav > li.nav-item {
    padding: 12px 16px;
}

.navbar.navbar-light ul.navbar-nav > li.nav-item .nav-link {
    padding: 0;

    font-family: PlutoMedium;
    font-size: .875rem;

    color: rgba(0,0,0,.4);
}
.navbar.navbar-light ul.navbar-nav > li.nav-item .nav-link:hover,
.navbar.navbar-light ul.navbar-nav > li.nav-item .nav-link:active {
    color: #009640;
}

.navbar.navbar-light ul.navbar-nav > li.nav-item .nav-link.active {
    position: relative;

    color: #000;
}
.navbar.navbar-light ul.navbar-nav > li.nav-item .nav-link.active:after {
    position: absolute;
    bottom: -4px;
    left: 0;

    width: 100%;
    height: 2px;

    content: "";

    background-color: transparent;
    background-color: #009640;
}

.bg-kundenkonto-navbar {
    background-color: #f4f4f4;
    box-shadow: inset 0 8px 30px -8px rgba(0,0,0,.05);
}

.kundenkonto-sidebar-link.active {
    font-family: PlutoBold;

    color: #009640;
    background-color: #f4f4f4;
}


/* ############################################################
        hamburger icon styles
############################################################ */

.hamburger-container {
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 40px;
    height: 6px;
    margin: 6px 0;

    transition: .4s;

    background-color: #4c4c4c;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-8.5px, 8.5px);
            transform: rotate(-45deg) translate(-8.5px, 8.5px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8.5px, -8.5px);
            transform: rotate(45deg) translate(-8.5px, -8.5px);
}


/* ############################################################
        footer styles
############################################################ */

.footer-gradient {
    background: linear-gradient(to bottom left,#00afa5 0%,#007d96 100%);
    background-color: #00afa5;
}

.footer-olma-vg {
    background-color: #009640;
}

footer a {
    display: block;
    padding: 9px 0;

    font-family: PlutoMedium;
    font-size: .875rem;
    line-height: 1;

    text-decoration: none;

    color: rgba(255,255,255,.7);
}
footer a:hover {
    text-decoration: none;

    color: rgba(255,255,255,1);
}

footer ul.footer-linklist {
    padding: 0;
    margin: 0;

    list-style: none;
}

footer ul > li.footerlink {
    margin-bottom: 8px;
}


/* ############################################################
        card styles
############################################################ */

.card {
    border: none;
    border-radius: 3px;
}

.card-hoverable:hover {
    color: #009640;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.card-kundenkonto {
    border: 1px solid rgba(0,0,0,.125) !important;
}

.card-leikat-minheight {
    min-height: 256px;
}

.card-danger {
    border: 1px;
    border-style: solid;
    border-color: red;
}


/* ############################################################
        progressbar styles
############################################################ */

.container-progressbar {
    z-index: 1;
}

.progressbar {
    list-style: none;

    counter-reset: step;
}

.progressbar li {
    position: relative;

    width: 100%;

    text-align: center;
    text-transform: uppercase;
}


.progressbar li:before {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px auto;

    font-weight: bold;
    line-height: 44px;

    content: counter(step);
    counter-increment: step;
    text-align: center;

    color: #bebebe;
    border: 2px solid #bebebe;
    border-radius: 3px;
    background: white;
}

.progressbar li:after {
    position: absolute;
    top: 22px;
    left: -50%;
    z-index: -1;

    width: 100%;
    height: 2px;

    content: "";

    background: #bebebe;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.step-active:after {
    background: #009640;
}

.progressbar li.step-active:before {
    color: white;
    border-color: #009640;
    background: #009640;
}

.progressbar li.step-visited:after {
    background: #555;
}

.progressbar li.step-visited:before {
    color: white;
    border-color: #555;
    background: #555;
}


/* ############################################################
        tabs styles
############################################################ */

.nav-tabs li.nav-item a.nav-link {
    font-family: PlutoBold;

    color: #009640;
}


/* ############################################################
        style for new features
############################################################ */

.feature-marker {
    background-color: rgba(255, 0 , 0, .2) !important;
}


/* ############################################################
        pagination styles
############################################################ */

.page-item.active .page-link {
    color: #fff;
    border-color: #009640;
    background-color: #009640;
}

.page-link {
    color: #009640;
}
.page-link:hover {
    color: #000;
}

@media (min-width: 768px) {
    .ubersicht-seite-adr-textbottom {
    }
}
