/* gridview odd & even styles */
.table > tbody > tr > td.info-odd {
    background-color: #c2e7ea;
}
.table > tbody > tr > td.info-even {
    background-color: #d7f1f9;
}
.expanded > td {
    background-color: lightyellow;
    padding-left: 30px !important;
}
.expanded > td:before {
    content: '\f105';
    font-family: FontAwesome;
    left: -8px;
    position: relative;
}

/* sidebar */
.sidebar-menu {
    position: fixed;
    right: -328px;
    height: 100%;
    width: 328px;
    z-index: 999;
}

.sidebar-menu .tab-content {
    background-color: #F4F4F4;
    border-left: 1px solid #ededed;
    padding: 60px 0px 20px 10px;
}

.sidebar-menu .tab-content .tab-pane {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar-tabs {
    position: inherit;
    right: 0px;
    top: 49%;
    text-align: center;
}

.sidebar-tabs li a {
    background-color: #F4F4F4 !important;
    font-size: 18px;
    color: #f34841 !important;
}

/* bootstrap custom columns row */
.col-xs-2c,
.col-sm-2c,
.col-md-2c,
.col-lg-2c,
.col-xs-8c,
.col-sm-8c,
.col-md-8c,
.col-lg-8c {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-2c {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-2c {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-2c {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-2c {
        width: 20%;
        float: left;
    }
}

.col-xs-8c {
    width: 80%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-8c {
        width: 80%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-8c {
        width: 80%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-8c {
        width: 80%;
        float: left;
    }
}

/* discount prices */
span.discount{
    white-space: pre;
    position: relative;
    display: inline-block;
}
span.discount:after{
    content: "";
    display: block;
    position: absolute;
    left:0; top:50%;
    color: red;
    width: 100%;
    height: 0;
    border-bottom: 1px solid red;
    transform: rotate(-10deg);
}
/*
border-bottom: 1px solid #ededed;

*/
.attention{
    background-color: #FD5E5E;

    margin-top: -13px;
    padding: 1px 0;
    position: relative;
    z-index: 4;

}
.attention__nameplate{
    color: white;
}
.attention__p{
    margin-top: 10px;
}


.navbar-nav {
    margin: 0px;
}
#cookieBanner {
    background: #fff;
    position: fixed;
    bottom: 40px;
    margin: auto auto;
    max-width: 815px;
    left: 0;
    right: 0;
    border: 1px solid #03a9f491;
    padding: 20px;
    box-shadow: 0 0 10px #03a9f491;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}
.cookieBanner--text {
    font-size: 16px;
}
.cookieBanner--text a {}
.cookieBanner--acceptBtn {
    padding: 10px 26px;
    border-radius: 40px;
    background: #03a9f4;
    color: #fff;
    margin-right: 26px;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}
.cookieBanner--acceptBtn:hover {

    background: #36c0ff;
}
.cookieBanner--acceptBtn:active {

}
.cookieBanner--close {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 26px;
    color: #838383;
    cursor: pointer;
}
.cookieBanner--close:hover {
}
.cookieBanner--close:active {
}

@media (max-width: 768px) {
    #cookieBanner {
        bottom: 4px;
    }
    .cookieBanner--text {
        font-size: 13px;
    }
    .cookieBanner--acceptBtn {
        font-size: 13px;
        padding: 6px 22px;
    }
}

@media (max-width: 500px) {
    #cookieBanner {
        flex-direction: column;
        padding-top: 26px;
    }
    .cookieBanner--text {

    }
    .cookieBanner--acceptBtn {
        width: 100%;
        text-align: center;
        margin-right: 0px;
    }
}