/******************** Layout CSS ********************/
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700&display=swap&subset=hebrew');

html {
    overflow-x: hidden;
    max-width: 100vw;
    font-size: 18px;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'rubik', sans-serif;
}

a {
    color: inherit;
    position: relative;
}

    a:hover {
        text-decoration: none;
        color: inherit;
    }

.main label > a:not([class]):before,
.main p > a:not([class]):before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 123, 255, 0.25);
    transition: all .1s ease-in-out;
}

.main label > a:not([class]):hover:before,
.main p > a:not([class]):hover:before {
    height: 100%;
}

p {
    text-align: justify;
}

.text-center p {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
    position: relative;
}

h2 {
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    font-weight: 500;
}

h4 {
    font-weight: 500;
}

.btn {
    font-size: inherit;
}

select[readonly] {
    pointer-events: none;
}

    select[readonly] option, select[readonly] optgroup {
        display: none;
    }

.text-light h2,
.text-light h3,
.text-light p,
.text-light {
    color: #fff;
}

.imgPlaceHolder {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 60%;
}

.lg { /* lightGalleryFix */
    direction: ltr;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.sbEmptyField,
#sbEmptyField { /* dummy spam filter */
    display: none;
}

.umb-grid img {
    max-width: 100%;
}
/************ header ************/
header {
    font-size: 19px;
    position: relative;
    z-index: 99;
}

    header div[class^="flex-grow-"] {
        display: flex;
        align-items: center;
    }

.headerLogo {
    padding: 5px;
}

    .headerLogo img {
        height: 111px;
    }

header .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 20px;
    padding: 15px;
}

header .navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    top: 85%;
}

header #secNav .nav-link {
    font-weight: 500;
    font-size: 20px;
    padding: 15px 30px;
}

.searchExpander {
    display: inline-block;
    width: 50px;
    text-align: center;
    background-color: #eee;
}

    .searchExpander[aria-expanded="true"] i:before {
        content: '\f00d';
    }

.headerSearchWrap:not(.collapsin):not(.show) {
    max-width: 0;
    display: block;
    height: 40px;
}

.headerSearchWrap {
    max-width: 300px;
    overflow: hidden;
    transition: all .2s ease-in-out;
    margin-left: 5px
}

    .headerSearchWrap .input-group {
        min-width: 200px;
    }

.headerSearchForm button {
    padding: 0 10px;
}

.langLink {
    margin-left: 30px;
    padding: 15px;
}

#languageSelectorButton {
    display: flex;
    align-items: center;
}

.headerPhone {
    margin-left: 15px;
}

/* Shopping Cart */
.floatingCart {
    position: fixed;
    left: 0;
    color: #fff;
    background-color: #007bff;
    padding: 15px 30px 5px 15px;
    margin-top: 10px;
    z-index: 9;
    border-radius: 0 5px 5px 0;
}

.shopping-cart-link {
}

.shopping-cart-icon {
    position: relative;
    font-size: 1.1rem;
}

.cart-counter {
    position: absolute;
    top: -12px;
    left: 6px;
    border-radius: 10px;
    height: 15px;
    width: 15px;
    font-size: 11px;
    line-height: 16px;
    font-weight: bold;
    color: #007bff;
    background-color: #ddd;
    text-align: center;
    z-index: -1;
}

#cartSummaryModal {
    display: block !important;
}

    #cartSummaryModal .modal-dialog {
        margin: 0;
        position: fixed;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #cartSummaryModal .modal-content {
        height: 100%;
        border-radius: 0;
        border: 0;
    }

.fade-left {
    transform: translateX(-100%);
    transition: all .25s ease-in-out;
}

    .fade-left.show {
        transform: translateX(0);
        transition: all .25s ease-in-out;
    }

#cartSummaryModal .modal-body {
    max-height: calc(100vh - 65px);
    padding: 5px 10px;
}

    #cartSummaryModal .modal-body .sideCartItems {
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        padding-left: 10px;
    }

.sideCartItem {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

    .sideCartItem h4 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .sideCartItem .price {
        width: 150px;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .sideCartItem small {
        padding-left: 5px;
    }

.sideCartItems .fa-times {
    padding: 10px;
}

.productSubtotal {
    font-weight: 500;
}

.productThumbnail {
    width: 116px;
}

.sideCartSum {
    padding: 10px 0;
}

#couponCode-error {
    font-size: .9rem;
    order: 3;
    position: absolute;
    bottom: -40px;
    right: 20px;
}

.a2a_button {
    border-radius: 50%;
}

.cartOptions {
    background: #f6f6f6;
    padding: 0 15px 15px 15px;
}

.goShipping[aria-expanded="true"] {
    background: white;
    color: #0069d9;
}

#formsStatusModal {
    font-size: 36px;
    text-align: center;
}

    #formsStatusModal .close {
        position: absolute;
        right: -50px;
        padding: 5px 15px;
        opacity: 1;
        color: #fff;
        text-shadow: none;
        font-size: 42px;
    }

.quantity {
    max-width: 70px;
    padding: 5px;
    border-radius: 0 25px 25px 0;
}

.price {
    display: flex;
}

.Os_Product .price,
.Os_ProductVariation .price {
    font-size: 1.5rem;
}

.Os_Product p,
.Os_ProductVariation p,
.product-details-intro {
    text-align: justify;
}

.amount {
    direction: ltr;
    display: inline-block;
    text-decoration: inherit;
}

.trShippingNotes td {
    padding: 0 0.75rem;
    border: 0;
    color: crimson;
    font-size: 0.8em;
}

.loadingBtn, .ccPayLoadingBtn {
    display: none;
    padding-right: 10px;
}

.trnzBlock {
    display: none;
    background-color: white;
}

#trnz_iframe {
    height: 420px;
}


/* Modals */
.modal-content .close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px;
    font-size: 30px;
    z-index: 1;
}

.modal-content .modal-title {
    padding: 0 40px;
    width: 100%;
    text-align: center;
}

footer {
    background-color: #444;
    color: white;
    padding-top: 15px;
}

    footer .form-control {
        color: white;
    }

.main > svg {
    display: block;
    height: 0;
}

.footerContactsNav li {
    padding: 0 15px;
}

    .footerContactsNav li i {
        float: right;
        padding-left: 10px;
        line-height: 26px;
    }

footer .form-control {
    background-color: transparent;
    border: 1px solid #fff;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
}

    .breadcrumb li {
        padding-left: 10px;
        font-size: 18px;
        color: white;
    }

        .breadcrumb li:not(:last-child):after {
            content: '//';
            padding-right: 10px;
            color: #007bff;
        }

    .breadcrumb a {
        font-weight: 600;
    }

.main {
    min-height: calc(100vh - 82px);
}









/******************** Content CSS ********************/
.page-hero {
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #999;
    text-align: center;
    margin-bottom: 15px;
}

    .page-hero h1 {
        font-size: 4rem;
        color: #fff;
        font-weight: bold;
    }

.image-hero::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.spoilerImg {
    background-position: center;
    background-size: cover;
    height: 100%;
}

/********** GridEditors CSS /**********/
/* simpleGridItems */
.simpleGridItems.iconItem {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .simpleGridItems.iconItem > div:first-child {
        padding-left: 15px;
    }

    .simpleGridItems.iconItem > div:last-child p {
        margin-bottom: 0;
    }

    .simpleGridItems.iconItem i {
        font-size: 90px;
    }

.simpleGridItems .nav.flex-column i {
    padding-left: 10px;
    display: inline-flex;
    width: 36px;
    height: 36px;
    line-height: 36px;
}

/* forms */
.form-group {
    position: relative;
}

.floatingLabelsForm .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    height: 100%;
    justify-content: flex-end;
}
.floatingLabelsForm .form-group label:not(.error) {
    order: 1;
    transform: translateY(40px);
    padding-right: .75rem;
    transition: all .1s ease-in-out;
    margin-bottom: 5px;
    z-index: 1;
}

.floatingLabelsForm .form-group input,
.floatingLabelsForm .form-group textarea {
    order: 2;
}

.floatingLabelsForm .form-group span.field-validation-error,
.floatingLabelsForm .form-group label.error,
.tranzilaHostedFiedsForm .form-group label.error,
.tranzilaHostedFiedsForm .form-group .field-validation-error {
    order: 3;
    font-size: .8rem;
    position: absolute;
    left: 28px;
    top: calc(100% - 18px);
    text-align: left;
    display: inline-block;
    padding: 5px;
    background-color: white;
}

.floatingLabelsForm .form-group input:focus ~ label.floatingLabel,
.floatingLabelsForm .form-group textarea:focus ~ label.floatingLabel,
.floatingLabelsForm .form-group select:focus ~ label.floatingLabel,
.floatingLabelsForm .form-group input.valid ~ label.floatingLabel,
.floatingLabelsForm .form-group textarea.valid ~ label.floatingLabel,
.floatingLabelsForm .form-group select.valid ~ label.floatingLabel,
.floatingLabelsForm .form-group input.input-validation-error ~ label.floatingLabel,
.floatingLabelsForm .form-group textarea.input-validation-error ~ label.floatingLabel,
.floatingLabelsForm .form-group select.input-validation-error ~ label.floatingLabel,
.floatingLabelsForm .form-group input.error ~ label.floatingLabel,
.floatingLabelsForm .form-group textarea.error ~ label.floatingLabel,
.floatingLabelsForm .form-group select.error ~ label.floatingLabel {
    transform: none;
    color: #007bff;
}

form fieldset > .field-validation-error {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.field-validation-valid {
    display: none;
}

.field-validation-error,
label.error,
label.required:after {
    color: crimson;
    order: 3;
    font-size: .8rem;
}

.form-control.input-validation-error {
    border-color: crimson;
    order: 3;
    font-size: .8rem;
}

.togglePassword {
    position: absolute;
    left: 10px;
    text-align: center;
    transform: translateY(-0.5rem);
    cursor: pointer;
    padding: 3px;
    z-index: 9;
    width: 32px;
}
/* Contact Page */
.ContactForm button.btn.btn-primary {
    float: left;
}

.ContactForm textarea:focus, .form-group input:focus {
    outline: 0;
}

.iconBox i {
    font-size: 2.5rem;
    color: #007bff;
}

.checkbox-group {
    display: flex;
    padding-top: 41px
}

input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin: .1rem 0 0 0.5rem;
}

.custom-control {
    display: flex;
    flex-direction: column;
}

.custom-control-label::before,
.custom-control-label::after {
    width: 1.2rem;
    height: 1.2rem;
}
/* collapsInfo */
.collapsInfo h5 i {
    padding-left: 5px;
    transform: translateY(3px);
    transition: all .2s ease-in-out;
}

.collapsInfo.card-open h5 i {
    transform: translateY(3px) rotate(-90deg);
}
/* testimonials */
.testimonial blockquote p {
    font-family: Heebo;
    padding-right: 20px;
}

    .testimonial blockquote p:first-child:before {
        right: 0;
        top: 0;
        color: #ccc;
        content: '"';
        font-size: 85px;
        font-style: normal;
        line-height: 1;
        position: absolute;
    }

.testimonial img {
    width: 60px;
    height: 60px;
}



/******************** Specific Pages CSS ********************/
/* Home Page*/
#homeSlider .swiper-slide {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeSliderText {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px black, 0 0 20px black, 0 0 30px black;
}

    .homeSliderText .homeSliderPreTitle {
        font-size: 36px;
    }

    .homeSliderText .homeSliderTitle {
        font-size: 48px;
        font-weight: bold;
    }

    .homeSliderText .homeSliderSubTitle {
        font-size: 36px;
    }

.swiper-slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100% !important;
    height: 100% !important;
}

    .swiper-slide-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
/* updates */
/* projects */
.articleBlock {
    background-color: white;
    height: 100%;
    overflow: hidden;
    transition: all .1s ease-in-out;
}

    .articleBlock:hover {
        transform: translateY(-5px);
    }

    .articleBlock .articleText {
        padding: 15px;
        text-align: center;
    }

        .articleBlock .articleText p {
            text-align: center;
        }

    .articleBlock h3 {
    }


/* Testimonials */
.testimonials {
    position: relative;
    margin-top: 120px;
}

    .testimonials p {
        font-size: 30px;
        padding: 30px 30px 0 30px;
    }

        .testimonials p::before {
            content: "�";
            position: absolute;
            right: 0;
            font-size: 90px;
            top: -20px;
        }

.swiperWrap {
    position: relative;
}

.testemonialsSwiper {
    margin: 0 60px;
}

.testimonials div[class^="swiper-button"]::after {
    content: none;
}

.testimonials div[class^="swiper-button"] {
    font-size: 42px;
}

.testimonials .testimonialAuthor {
    font-weight: 300;
    font-size: 24px;
    padding-right: 30px;
}

/* Knowledge Base */
.post-meta {
    position: absolute;
    bottom: 15px;
    right: 15px;
    left: 15px;
    z-index: 1;
    padding: 20px;
    pointer-events: none;
}

    .post-meta > span {
        pointer-events: initial;
    }

.kbSideNav .nav-tabs {
    margin-bottom: 10px;
}

.kbSideNav .nav-item {
    margin-left: 5px;
}

.kbSideNav .nav-link {
    padding: .25rem .7rem;
    height: 100%;
}

    .kbSideNav .nav-link.active {
        border-top: 3px solid;
    }

.sideNav a {
    color: #fff;
}

.sideNav > .nav > li {
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

    .sideNav > .nav > li > a {
        display: block;
        color: #fff;
        background-color: #007bff;
        transition: all .2s ease-in-out;
        width: 100%;
        padding: 10px;
        position: relative;
        overflow: hidden;
    }

        .sideNav > .nav > li > a:focus, .sideNav > .nav > li > a:hover {
            background-color: #005fc6;
        }

.sideNav .subCats, .sideNav .subSubCats, .sideNav .subSubSubCats {
    display: none;
}

.sideNav .nav > li > a.subCated:after {
    content: '\f055';
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    text-decoration: inherit;
    opacity: 9;
    position: absolute;
    left: 15px;
}

.sideNav .nav > li > a.subCated.opened:after {
    content: '\f056';
}

.sideNav a.subCated.opened:after {
    content: '\f056';
}

.sideNav .subCats > li {
    margin-top: 5px;
}

    .sideNav .subCats > li > a {
        background: #eee;
        color: #007bff;
        width: 100%;
        display: block;
        padding: 10px;
        position: relative;
        overflow: hidden;
    }

        .sideNav .subCats > li > a:focus, .sideNav .subCats > li > a:hover {
            background: #e6e6e6;
        }

.sideNav .subSubCats > li {
    margin-top: 5px;
}

    .sideNav .subSubCats > li > a {
        background: #e6e6e6;
        color: #007bff;
        width: 100%;
        display: block;
        padding: 10px 25px 10px 10px;
        position: relative;
        overflow: hidden;
    }

        .sideNav .subSubCats > li > a:focus, .sideNav .subSubCats > li > a:hover {
            background: #dedede;
        }

.sideNav .subSubSubCats > li {
    margin-top: 0px;
}

    .sideNav .subSubSubCats > li > a {
        background: #eee;
        padding-right: 30px;
    }

        .sideNav .subSubSubCats > li > a:focus, .sideNav .subSubSubCats > li > a:hover {
            background: #dedede;
        }

.sideNav .nav > li > a.currentCat:after {
    position: absolute;
    left: 15px;
    content: "\f060";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    text-decoration: inherit;
    animation: pointing .8s infinite ease-in-out;
}

@keyframes pointing {
    0% {
        left: 15px;
    }

    80% {
        left: 20px;
    }

    100% {
        left: 15px;
    }
}

.lessonBlock {
    margin-bottom: 30px;
    border: 1px solid #eee;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

    .lessonBlock .lessonText {
        padding: 5px 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .lessonBlock h3 {
        font-size: 1.4rem;
    }

    .lessonBlock .lessonImg {
        min-height: 210px;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: .1s ease-in;
    }

        .lessonBlock .lessonImg div {
            position: absolute;
            color: white;
            bottom: 0;
            width: 100%;
            background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
            padding: 13px 10px 0 10px;
            min-height: 40px;
            font-size: .8rem
        }

            .lessonBlock .lessonImg div a {
                color: white;
            }

    .lessonBlock .lessonInfo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: .8rem;
    }
/* lesson */
.pdfInPage {
    height: 1200px;
}

.fa.fa-twitter, .fa.fa-facebook, .fa.fa-whatsapp {
    font-family: "Font Awesome 5 Brands";
}

.lessonTools {
    position: absolute;
    top: 15px;
    left: -40px;
    width: 40px;
}

.jssocials {
    display: inline-block;
}

.jssocials-shares {
    margin: 0;
}

.jssocials-share-link {
    border-radius: 50%;
    font-size: 12px;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bbb;
}

.jssocials-share:last-child {
    margin-right: .6em;
}



/* Products Page */
.product {
    margin: 30px 0;
}

    .product h4 {
        text-align: center;
        margin: 0;
        padding: 10px 0 5px 0;
    }

    .product .price {
        font-size: 1.15rem;
        align-items: baseline;
    }

    .product .priceNbtn {
        min-height: 62px;
    }

.brandLogo {
    vertical-align: baseline;
}

.productShare {
    position: absolute;
    left: 15px;
    margin-top: -70px;
}

.gridTabs {
    margin: 0 -15px 30px -15px;
}

    .gridTabs .nav-tabs .nav-link {
        height: 100%;
        margin-left: 5px;
        padding: .5rem .8rem;
    }

        .gridTabs .nav-tabs .nav-item.show .nav-link,
        .gridTabs .nav-tabs .nav-link.active {
            border-top: 3px solid;
        }

    .gridTabs .tab-pane {
        border: 1px solid #ddd;
        border-top: 0;
        border-radius: 0 0 10px 10px;
    }
.onsale, .outofstock {
	position: absolute;
	background-color: #007bff;
	color: white;
	font-weight: 500;
	margin-right: 15px;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	font-size: 1.1rem;
	z-index: 1;
}
.outofstock {
	background-color: #eee;
	color: #444;
}

.variationsPanel .outofstock {
	margin-left: 15px;
	transform: translateY(-20%);
}

.addToCart {
    background-color: #007bff;
    color: white;
    padding: 5px 15px;
}

    .addToCart:before {
        content: '\f291';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        padding-left: 5px;
    }

.toast-close {
    margin: 0 10px 0 -5px;
}

/* Product Page */
.variationsMenu {
    display: flex;
    flex-flow: wrap;
}

.variationBox {
    padding-bottom: 10px;
}

.variationThumb {
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    margin-left: 10px;
    border: 3px solid;
    position: relative;
}

    .variationThumb.collapsed,
    .variationThumb.inactive {
        border: 1px solid #eee;
    }

.variationCollapse.collapsing {
    transition: none;
}

.variationThumbTitle {
    display: block;
    font-size: 17px;
    margin-top: 5px;
    text-align: center;
    width: 50px;
}

#accordionVariations .card {
    border: 0;
}

.productOrVariationTitle {
    text-align: right;
}

.productPage .price {
    font-size: 30px;
    margin-bottom: 15px;
}

.productActions {
    display: flex;
    justify-content: flex-end;
    padding: 30px 0;
}

.productImage {
    padding-top: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.productImagesThumbs {
    margin-top: 10px;
}

.productThumb {
    height: 110px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.filterBtn {
    padding: 2px 10px;
}

.nav-item:not(:last-child) .filterBtn {
    margin-left: 10px;
}

.filterBtn:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    padding-left: 10px;
    font-weight: 900;
    font-size: .9rem;
    display: none;
    float: right;
}

.filterBtn:hover:before {
    display: inline;
}

.whitePng {
    filter: brightness(1000%) contrast(100%);
}

/* galleries */
.galleryCount {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 3px 10px;
    top: 0;
    pointer-events: none;
}

.lightgallery {
    position: relative;
}

    .lightgallery .lightItem {
        cursor: pointer;
    }

        .lightgallery .lightItem::before {
            content: '\f00e';
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            text-decoration: inherit;
            color: white;
            text-shadow: 0 0 5px black;
            font-size: 1.5em;
            z-index: 1;
            position: absolute;
            bottom: 35%;
            right: 45%;
            opacity: 0;
            transition: all .2s ease-in-out;
            text-decoration: none;
        }

        .lightgallery .lightItem:hover:before {
            opacity: 1;
            bottom: 50%;
            transform: translateY(50%);
        }

/* Contact */
.contactBox {
    background-color: #0d3d6c;
    color: #fff;
    text-align: center;
    height: 180px;
    margin-bottom: 30px;
    transition: all .1s ease-in-out;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contactBox:hover {
        background-color: #054e95;
    }

    .contactBox i {
        font-size: 60px;
    }

    .contactBox strong {
        display: block;
        font-size: 22px;
        padding: 10px 0 0 0;
    }

.byFormBtns {
    margin-top: 30px;
}
/* Branches Page */
#map {
    min-height: 600px;
}
/* orderDetails */
orderDetails {
    padding-top: 15px;
}

.orderDetailsRow {
    border-bottom: 1px solid #eee;
}

    .orderDetailsRow > div {
        display: flex;
        align-items: center;
    }

.ordersHeader {
    background-color: #f6f6f6;
    font-weight: bold;
    padding: 15px;
    display: flex;
    justify-content: space-around;
}

    .ordersHeader > div {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

.orderRow {
    display: flex;
    justify-content: space-around;
}

    .orderRow > div {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

/* Wizard */
.filterSpoiler {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
}

/* tooltips */
.tooltip-inner {
	background-color: #6c757d;
}

.bs-tooltip-top .arrow::before {
	border-top-color: #6c757d;
}
