/* FONTS
================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

/* BASE
================================================== */

html {
    font-size: 80%;
}

body {
    padding-top: 5rem;
    font-size: 1.125rem;
    color: #000;
    background: #fff;
}

.container.admin-bar p {
    margin-bottom: 0;
}

body, input, button, textarea {
    font-family: "DM Sans", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a, input, textarea, button {
    transition: color .3s, background-color .3s, border-color .3s, opacity .3s;
}

a {
    text-decoration: none;
    color: #1b1c77;
}

a:hover {
    color: #000;
}

*, *:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
	position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 1010;
	top: 0;
	right: 0;
	left: 0;
    height: 5rem;
    border-bottom: 1px solid #cfcfcf;
	background: #fff;
	transition: all .3s;
}

    .header .admin-bar{
        justify-content: center;
        padding-top: 20px;
    }
    
	.header .container {
		display: flex;
		align-items: center;
	}

		.header__logo {
            margin-right: auto;
			height: calc(1.625rem * 1.25);
		}

			.header__logo img,
            .header__logo svg {
                width: auto;
				height: 100%;
			}

    .header__buttons {
        display: flex;
        margin: 0 0 0 1rem;
        padding: 0;
        list-style-type: none;
    }

        .header__buttons li {
            position: relative;
            margin-left: 1.75rem;
        }

            .header__buttons a {
                position: relative;
                display: block;
                padding: .5rem 0;
            }

                .header__buttons a svg {
                    width: 1.375rem;
                    height: 1.375rem;
                    transition: all .3s;
                }

                .header__buttons a:hover > svg {
                    fill: #bd1622;
                }

                .header__buttons a .counter {
                    position: absolute;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    top: .5rem;
                    right: 0;
                    text-align: center;
                    width: 1.25rem;
                    height: 1.25rem;
                    font-size: .75rem;
                    color: #fff;
                    background-color: #bd1622;
                    border-radius: 100%;
                    transform: translate(50%, -50%);
                }

            .header__buttons ul {
                position: absolute;
                visibility: hidden;
                top: 100%;
                right: 0;
                padding: .5rem 0;
                white-space: nowrap;
                font-size: 1rem;
                line-height: 1.25;
                border: 1px solid #ddd;
                list-style-type: none;
                background: #fff;
                opacity: 0;
                transition: all .3s;
            }

                .header__buttons ul li {
                    margin: 0;
                }

                    .header__buttons ul a {
                        padding: .5rem 1.25rem;
                    }

                        .header__buttons ul a span {
                            display: block;
                            font-size: .875rem;
                            color: #999;
                        }

                    .header__buttons ul a:hover {
                        color: #bd1622;
                    }

            .header__buttons li:hover > ul {
                visibility: visible;
                opacity: 1;
            }

.header--sticky {
    background: rgba(255 255 255 / 80%);
    backdrop-filter: blur(20px);
}

.admin-bar a{
    text-decoration: underline;
    color: inherit;
}

/*
    Navigation
*/

.main-menu {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
}

    .main-menu ul {
        margin-bottom: 0;
        padding: 0;
        list-style-type: none;
    }

        .main-menu li {
            position: relative;
        }

        .main-menu li.highlighted {
            text-decoration: underline;
        }

            .main-menu li a {
                position: relative;
                display: block;
                color: #000;
            }

    .main-menu > ul {
        display: flex;
        align-items: center;
    }

        .main-menu > ul > li {
            margin-left: 2rem;
        }

            .main-menu > ul > li > a {
                padding: .5rem 0;
            }

            .main-menu > ul > li:hover > a,
            .main-menu > ul > li.active > a {
                color: #bd1622;
            }

    .main-menu ul ul {
        position: absolute;
        z-index: 1;
        visibility: hidden;
        top: 100%;
        left: 50%;
        min-width: 15rem;
        padding: 1rem 0;
        list-style-type: none;
        text-align: left;
        font-size: 1rem;
        background: #fff;
        box-shadow: 0 .5rem 1rem rgba(0 0 0 / 5%);
        transform: translate(-50%, 0);
        opacity: 0;
        transition: all .3s;
    }

        .main-menu ul ul a {
            padding: .5rem 1.5rem;
        }

        .main-menu ul ul li:hover > a,
        .main-menu ul ul li.active > a {
            color: #bd1622;
        }

            .main-menu ul ul ul {
                top: -1rem;
                left: 100%;
                transform: translate(0, 0);
            }

    .main-menu li:hover > ul {
        visibility: visible;
        opacity: 1;
    }


/*
	Footer
*/

.footer {
    padding-top: 6rem;
    padding-bottom: 6rem;
    font-size: 1rem;
    background-color: #f0f0f0;
}

    .footer a {
        color: #000;
    }

    .footer a:hover {
        color: #1b1c77;
    }

    .footer__menu {
        padding: 0;
        line-height: 1.25;
        list-style-type: none;
    }

        .footer__menu li {
            margin-bottom: .25em;
        }

    .footer .developer img {
        height: 40px;
    }

/*
    Off canvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1.125rem;
    background: #fff;
}

    .offcanvas-body {
        padding: 1rem 2rem;
    }

    .offcanvas ul {
        padding: 0;
        list-style-type: none;
    }

        .offcanvas ul a {
            display: block;
            padding: .5rem 0;
            color: #000;
        }

        .offcanvas ul ul {
            margin-left: 1.5rem;
            font-size: 1rem;
        }

    .offcanvas li.highlighted {
        text-decoration: underline;
    }


/* SECTIONS
================================================== */

.section {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
}

.section--split-picture {
    padding-top: 0;
    padding-bottom: 3rem;
}

    .section--split-picture .section__bg {
        min-height: 30vh;
        margin-bottom: 2rem;
        background-size: cover;
        background-position: center center;
    }

/*
    Photo Section
*/

.photo-section {
    position: relative;
    overflow: hidden;
}

    .photo-section__header {
        height: 22rem;
        padding: 2rem;
        background: url("../img/photo-bg-mobile.jpg") left center no-repeat;
        background-size: cover;
    }

        .photo-section__subtitle {
            margin-bottom: .5rem;
            text-transform: uppercase;
            font-size: .875rem;
        }

        .photo-section__title {
            max-width: 12rem;
            margin-bottom: 2rem;
            font-size: 1.875rem;
            line-height: 1;
            color: #1b1c77;
        }

        .photo-section__header .link {
            display: inline-block;
            max-width: 10rem;
        }

    .photo-section__body {
        padding: 2rem;
        background-color: #f0f0f0;
    }

        .photo-section__body p:last-child {
            margin-bottom: 0;
        }

    .photo-section__phone {
        display: none;
    }


/*
    Entry
*/

.entry h4 {
    font-weight: 700;
    color: #1b1c77;
}

.entry a {
    text-decoration: underline;
}

.entry a:hover {
    text-decoration: none;
    color: #1b1c77;
}

/*
    Hero
*/

.hero {
    position: relative;
    height: 30rem;
    margin-bottom: 3rem;
    padding: 2rem 2rem;
}

    .hero > * {
        position: relative;
        z-index: 2;
    }

    .hero__bg {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-position: center bottom;
    }

    .hero .list-with-icon--light {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 1rem;
}

    .swiper-pagination-bullet {
        transition: all .3s;
    }

    .swiper-pagination-bullet-active {
        background-color: #1b1c77;
    }

.swiper-button-next,
.swiper-button-prev {
    width: 2.25rem;
    text-align: center;
    font-size: 1rem;
    color: #1b1c77;
    background-color: rgba(255 255 255 / 60%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0;
}

.swiper-button-next--lg,
.swiper-button-prev--lg {
    height: 7rem;
    width: 2.5rem;
    margin-top: -3.5rem;
}

.swiper-button-next--dark,
.swiper-button-prev--dark {
    background-color: rgba(27 28 119 / 10%);
}

.category-carousel {
    margin-bottom: 5rem;
}

    .category-carousel .swiper-slide {
        width: 200px;
        min-width: 200px;
    }

.picture-thumbnail-carousel .swiper-slide {
    position: relative;
}

/*
.picture-thumbnail-carousel .swiper-slide:after {
    display: block;
    content: "";
    padding-top: 70%;
}
*/

    .picture-thumbnail-carousel .swiper-slide img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.picture-thumbnail-carousel .swiper-button-next,
.picture-thumbnail-carousel .swiper-button-prev {
    top: 0;
    bottom: 0;
    height: 100%;
    margin: 0;
    transform: translate(0, 0);
}

.picture-thumbnail-carousel .swiper-slide-thumb-active {
    opacity: .4;
}

.picture-carousel img {
    display: block;
    width: 100%;
}

/*
    Category Box
*/

.category-box {
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 1.1;
    color: #000;
}

    .category-box figure {
        overflow: hidden;
        width: 4.6875rem;
        min-width: 4.6875rem;
        height: 4.6875rem;
        margin: 0 1rem 0 0;
        border-radius: 100%;
    }

        .category-box figure img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.category-box:hover {
    color: #1b1c77;
}

/*
    Icon Box
*/

.icon-box {
    text-align: center;
    font-size: 1rem;
}

    .icon-box svg {
        display: block;
        width: 2.75rem;
        height: 2.75rem;
        margin: 0 auto 2.5rem;
    }

    .icon-box__title {
        margin-bottom: .75rem;
        text-transform: uppercase;
        font-size: 1.125rem;
        font-weight: 700;
    }

/*
    Post Box
*/

.post-box {
    margin-bottom: 1rem;
    font-size: 1rem;
}

    .post-box figure a {
        display: block;
    }

    .post-box figure a:hover {
        opacity: .8;
    }

    .post-box__title {
        font-size: 1.5rem;
    }

        .post-box__title a {
            color: #000;
        }

        .post-box__title a:hover {
            color: #1b1c77;
        }

    .post-box .breadcrumb {
        font-size: .9375rem;
    }

.post-box--horizontal {
    font-size: 1.125rem;
}

    .post-box--horizontal .post-box__category {
        font-size: 1rem;
    }

    .post-box--horizontal .post-box__title a {
        color: #1b1c77;
    }

    .post-box__title a:hover {
        color: #000;
    }

/*
    Product Box
*/

.product-box,
.product-box:hover {
    color: #000;
}

.product-box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 1rem;
    transition: all .3s;
}

    .product-box__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1 0 0;
    }

        .product-box__title {
            font-size: 1.5rem;
        }

        .product-box__content .btn {
            margin-top: auto;
        }

    .product-box__label {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        padding: .5rem 1rem;
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        background-color: #1b1c77;
    }

/*
    Icon Article
*/

.icon-article {
    position: relative;
    padding-left: 6.25rem;
}

    .icon-article svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 4.75rem;
        height: 4.75rem;
    }

    .icon-article__intro {
        font-size: 1.5rem;
        line-height: 1.2;
    }

        .icon-article__title {
            margin-bottom: 1rem;
            font-size: inherit;
            font-weight: 700;
            color: #1b1c77;
        }

/*
    Sticky Info
*/

.sticky-info {
    position: fixed;
    z-index: 100;
    top: 15rem;
    right: 0;
    width: 11.25rem;
    padding: 1.25rem;
    font-size: .875rem;
    color: #fff;
    background-color: #1b1c77;
}

    .sticky-info a {
        display: block;
        text-decoration: underline;
        color: #fff;
    }

    .sticky-info a:hover {
        text-decoration: none;
    }

    .sticky-info__title {
        margin-bottom: 1rem;
        font-size: 1.125rem;
        font-weight: 400;
    }

    .sticky-info__title strong {
        display: block;
        font-size: 1.5rem;
    }

/*
    Accordion
*/

.accordion {
    border-top: 1px solid rgba(0, 0, 0, .125);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

    .accordion-button {
        padding: 1.5rem 0;
        color: #1b1c77;
        font-size: 1.375rem;
        font-weight: 700;
    }

    .accordion-button,
    .accordion-button:not(.collapsed) {
        background-color: transparent;
    }

    .accordion-button:focus,
    .accordion-button:not(.collapsed) {
        color: #000;
        box-shadow: none;
    }

    .accordion-button::after {
        width: 1.3125rem;
        height: 1px;
        background: #1b1c77;
    }

    .accordion-button::before {
        position: absolute;
        content: "";
        top: 50%;
        right: .625rem;
        width: 1px;
        height: 1.3125rem;
        background: #1b1c77;
        transform: translate(0, -50%);
    }

    .accordion-button:not(.collapsed)::after {
        transform: none;
    }

    .accordion-button:not(.collapsed)::before {
        display: none;
    }

    .accordion-body {
        padding: 0 0 1.5rem;
    }

        .accordion-body > *:last-child {
            margin-bottom: 0;
        }

/*
    Gallery Box
*/

.gallery-box {
    display: block;
    font-size: 1rem;
    line-height: 1.3333333;
}

.gallery-box,
.gallery-box:hover {
    color: #000;
}

    .gallery-box figure {
        position: relative;
        overflow: hidden;
        padding-bottom: 100%;
        margin-bottom: .75rem;
    }

        .gallery-box figure img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .3s;
        }

    .gallery-box strong {
        display: block;
    }

.gallery-box:hover {
    color: #1b1c77;
}

    .gallery-box:hover figure img {
        transform: scale(1.1);
    }

/*
    Fancybox
*/

[data-fancybox]:hover {
    opacity: .8;
}

/*
    Number Box
*/

.number-box {
    padding: 1rem 1.25rem;
    color: #fff;
    background-color: #1b1c77;
}

    .number-box__title {
        font-size: 1.5rem;
    }

        .number-box__title strong {
            display: block;
            font-size: 2.25em;
            line-height: 1;
        }

/*
	Marker map
*/

.markermap {
	position: relative;
}

    .markermap > img {
        display: block;
        width: 100%;
    }

    .markermap__point {
        display: block;
    }

    .markermap__point {
        position: absolute;
        z-index: 5;
        width: .75rem;
        height: .75rem;
        font-size: 1rem;
        padding: 0;
        border: 0;
    }

    .markermap__point,
    .markermap__point:hover,
    .markermap__point:active,
    .markermap__point:focus {
        color: #000;
    }

        .markermap__point__mark {
            position: absolute;
            z-index: 1;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: #4f4f8d;
            transition: all .3s;
            border-radius: 100%;
        }

        .markermap__point__name {
            position: absolute;
            top: .75rem;
            left: 50%;
            transform: translate(-50%, 0);
        }

.markermap__point[aria-expanded="true"] .markermap__point__mark,
.markermap__point:hover .markermap__point__mark {
    box-shadow: 0 0 0 .1875rem #cdedf2;
	transform: scale(1.2);
}

/*
    Map Details
*/

.map-details {
    position: relative;
    padding: 1rem 2rem;
    font-size: .9375rem;
    background-color: #f0f0f0;
}

    #clickOnMapText {
        font-size: 1.125rem;
    }

    .map-details .nordart-points-dropdow {
        transform: translate3d(0, 0, 0) !important;
    }

    .map-details > div.dropdown {
        height: 35px;
    }

        .map-details .dropdown .btn {
            display: block;
            width: 100%;
            padding: 0;
            font-size: 1.25rem;
            text-align: right;
            color: #1b1c77;

        }

        .map-details .dropdown-item[aria-expanded="true"] {
            display: none;
        }

/*
    Stepbar
*/

.stepbar__step {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    border-bottom: .25rem solid #f0f0f0;
    color: #000;
}

    .stepbar__step span {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 1rem;
        color: #fff;
        background-color: #cfcfcf;
        border-radius: 100%;
    }

.stepbar__step--active,
.stepbar__step.active {
    border-bottom-color: #1b1c77;
}

    .stepbar__step--active span,
    .stepbar__step.active span {
        background-color: #1b1c77;
    }

a.stepbar__step:hover {
    color: #1b1c77;
}

.stepbar .nav .stepbar__step {
    justify-content: center;
    padding: 0;
    text-align: center;
    font-size: 1rem;
}

.stepbar .nav .stepbar__step:focus {
    color: #000;
}

/*
    Timeline
*/

.timeline {
    margin-bottom: 0;
    padding: 0;
    font-size: 1rem;
    list-style-type: none;
    color: #1b1c77;
}

    .timeline li {
        position: relative;
        display: flex;
        padding-bottom: 1.25rem;
    }

    .timeline li:before {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        width: 3.75rem;
        height: 3.75rem;
        border: .625rem solid #cdedf2;
        border-radius: 50%;
        transform: translate(-50%, 0);
    }

    .timeline li:not(:last-child):after {
        position: absolute;
        content: "";
        top: 3.75rem;
        bottom: 0;
        left: 50%;
        width: .375rem;
        background-color: #cdedf2;
        transform: translate(-50%, 0);
    }

    .timeline__number,
    .timeline__text {
        display: flex;
        align-items: center;
        flex: 1 0 0;
        max-width: 50%;
    }

    .timeline__number {
        height: 3.75rem;
        font-size: 2.25rem;
    }

    .timeline li:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline li:nth-child(odd) .timeline__number,
    .timeline li:nth-child(even) .timeline__text {
        justify-content: end;
        text-align: right;
        padding-right: 2.75rem;
    }

    .timeline li:nth-child(even) .timeline__number,
    .timeline li:nth-child(odd) .timeline__text {
        padding-left: 2.75rem;
    }

/*
    Member Box
*/

.member-box {
    font-size: 1rem;
    line-height: 1.3333;
}

/*
    Panel
*/

.panel {
    padding: 2rem 2rem .5rem;
    background-color: #f0f0f0;
}

/*
    Modal
*/

.modal-content {
    border: 0;
    border-radius: 0;
    box-shadow: 0 1rem 1.5rem rgba(0 0 0 / 10%);
}

    .modal-body {
        padding: 2rem;
    }

.modal .btn-close {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #fff;
    background-size: .75rem;
    opacity: 1;
    border-radius: 0;
}

.modal .btn-close:hover {
    opacity: .8;
}

.modal-backdrop {
    background-color: #e6e6e6;
}

.modal-backdrop.show {
    opacity: .8;
}

.modal-xxl {
    max-width: 1440px;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: .5625rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 .25rem rgba(0 0 0 / 10%);
}

.btn-lg {
    font-size: 1.125rem;
}

.btn-primary,
.btn-primary:focus {
    border-color: #1b1c77;
    color: #fff;
    background-color: #1b1c77;
}

.btn-primary:hover {
    border-color: #000;
    color: #fff;
    background-color: #000;
}

    .btn-primary svg {
        fill: #fff;
    }

.btn-outline-primary,
.btn-outline-primary:focus {
    border-color: #1b1c77;
    color: #1b1c77;
}

.btn-outline-primary:hover {
    border-color: #1b1c77;
    color: #fff;
    background-color: #1b1c77;
}

.btn-outline-white,
.btn-outline-white:focus {
    border-color: #fff;
    color: #fff;
}

.btn-outline-white:hover {
    border-color: #fff;
    color: #1b1c77;
    background-color: #fff;
}

.btn--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
}

    .btn--icon svg {
        width: 1.625rem;
        height: 1.625rem;
    }

/*
	Form components
*/

.form-control,
.form-control:focus {
    box-shadow: none;
}

.form-control {
    padding: .75rem 0;
    border-width: 0 0 3px;
    border-color: #cfcfcf;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0;
}

.form-control:focus {
    border-color: #cdedf2;
}

select.form-control {
    padding-right: 2.5rem;
    background-image: url("../img/select-arrow.svg");
    background-size: 1rem 1rem;
    background-position: right center;
    background-repeat: no-repeat;
    text-overflow: "";
    text-indent: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #fa3d3d;
    background-image: none;
}

.invalid-feedback {
    font-size: .875rem;
    color: #fa3d3d;
}

.form-select,
.form-select:focus {
    border-color: #ced4da;
}

.form-select {
    padding: 1rem;
    font-size: 1.125rem;
    background-size: 1rem 1rem;
    border-radius: 0;
}

.form-select-sm {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(0 0 0 / 10%);
}

.form-check {
    padding-left: 2.5rem;
}

    .form-check a {
        text-decoration: underline;
    }

    .form-check .form-check-input {
        width: 1.75rem;
        height: 1.75rem;
        margin-left: -2.6rem;
        margin-top: 0;
        border-width: 2px;
        border-color: #e9e9e9;
        background-color: #fff;
    }

    .form-check .form-check-input[type="checkbox"] {
        border-radius: 0;
    }

    .form-check .form-check-input:focus {
        box-shadow: 0 0 0 2px #cdedf2;
    }

    .form-check .form-check-input:checked {
        border-color: #1b1c77;
        background-color: #1b1c77;
    }

.filechooser {
    position: relative;
}

    .filechooser input {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .filechooser__title {
        display: inline;
    }

    .filechooser__label {
        display: inline;
        font-weight: 400;
    }

    .filechooser__label.d-none + label {
        margin-left: .5rem;
    }

    .filechooser label {
        display: inline;
        color: #1b1c77;
        cursor: pointer;
        transition: all .3s;
    }

    .filechooser label:hover {
        color: #000;
    }

.colorchooser-list {
    display: flex;
}

    .colorchooser-list .colorchooser {
        margin: 0 .625rem .625rem 0;
    }

.colorchooser {
    position: relative;
    cursor: pointer;
}

    .colorchooser input {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

        .colorchooser span {
            display: block;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 100%;
            box-shadow: 0 0 0 1px #f3f3f3;
            border: solid 1px #000000;
        }

        .colorchooser input:checked + span {
            box-shadow: 0 0 0 3px #fff, 0 0 0 5px #b7e0e6;
        }

.textchooser {
    position: relative;
    display: block;
    width: 100%;
}

    .textchooser input {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .textchooser__content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 4rem;
        padding: .25rem .5rem;
        line-height: 1.2;
        font-weight: 700;
        border: 1px solid #c4c4c4;
        text-align: center;
        cursor: pointer;
    }
    
    .textchooser input:checked + .textchooser__content {
        border-color: #cdedf2;
        background-color: #cdedf2;
    }

        .textchooser .info-icon {
            position: absolute;
            top: .25rem;
            right: .25rem;
        }

.textchooser--lg .textchooser__content {
    height: 4.75rem;
}

.texttoggle {
    position: relative;
    display: block;
    width: 100%;
}

    .texttoggle input {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .texttoggle__content {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 4rem;
        line-height: 1.2;
        font-weight: 700;
        border: 1px solid #c4c4c4;
        border-radius: 2rem;
    }

        .texttoggle__content span {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1 0 0;
            height: 100%;
            text-align: center;
            border-radius: 2rem;
        }

    .texttoggle__label {
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        left: 0;
        width: 50%;
        cursor: pointer;
    }

    .texttoggle input + .texttoggle__content span:last-child {
        background-color: #cdedf2;
    }

    .texttoggle input:checked + .texttoggle__content span:last-child {
        background-color: transparent;
    }

    .texttoggle input:checked + .texttoggle__content span:first-child {
        background-color: #cdedf2;
    }

    .texttoggle input:checked ~ .texttoggle__label {
        left: 50%;
    }

.input-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #1b1c77;
}

    .input-number input {
        width: 2.25rem;
        margin: 0;
        padding: 0;
        border: 0;
        text-align: center;
    }

    .input-number a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 100%;
        text-align: center;
        text-decoration: none;
    }

    .input-number__text {
        display: flex;
    }

        .input-number__text span {
            margin-left: .25rem;
        }

/*
    Label Remove
*/

.label-number {
    display: inline-block;
    height: 4rem;
    min-width: 8.75rem;
    font-size: .875rem;
    line-height: 4rem;
    text-align: center;
    border: 1px solid #6e7eb0;
    color: #141414;
    background-color: #cdedf2;
}

    .label-number span {
        font-size: 1.5rem;
        font-weight: 700;
        margin-right: .25rem;
    }

    .label-number a {
        color: inherit;
        text-decoration: underline;
    }

    .label-number a:hover {
        text-decoration: none;
    }

/*
    Quantity Form
*/

.quantity-form {
    position: relative;
    display: flex;
    min-height: 2.75rem;
}

    .quantity-form__num {
        position: absolute;
        display: flex;
        align-items: center;
        top: 50%;
        right: -1.25rem;
        padding-left: .5rem;
        font-size: .875rem;
        font-weight: 700;
        color: #fff;
        background-color: #0ec173;
        border-radius: 1rem;
        transform: translate(0, -50%);
    }

        .quantity-form__num svg {
            display: block;
            width: .75rem;
            height: .75rem;
            margin-left: .25rem;
            fill: #fff;
        }

/*
	Range slider
*/

.noUi-target {
	border-color: #ebebeb;
	background: #ebebeb;
	border-radius: 1rem;
}

	.noUi-handle {
		border: 0;
		background: #cdedf2;
		border-radius: 100%;
		box-shadow: none;
	}

	.noUi-handle:after,
	.noUi-handle:before {
		display: none;
	}

		.noUi-target .noUi-tooltip {
			left: 50%;
			bottom: 50%;
			padding: 0;
			border: 0;
			font-weight: 700;
			font-size: .875rem;
			color: #000;
			background: transparent;
			transform: translate(-50%, 50%);
		}

.noUi-horizontal {
	height: .25rem;
	margin: 1.75rem 0;
}

	.noUi-horizontal .noUi-handle {
		width: 3.75rem;
		height: 3.75rem;
		top: -1.875rem;
        cursor: grab;
	}

	html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
		right: -1.875rem;
	}

	.noUi-pips-horizontal {
		top: auto;
		bottom: 100%;
		height: 1.75rem;
		padding: 0;
	}

	.noUi-marker-horizontal.noUi-marker {
		display: none;
	}

	.noUi-value {
		font-size: .875rem;
		color: #000;
	}

	.noUi-value-horizontal {
		transform: translate(-50%, 0);
	}

	.noUi-value-horizontal:nth-child(2) {
		transform: translate(0, 0);
	}

	.noUi-value-horizontal:last-child {
		transform: translate(-100%, 0);
	}

.hide-pips .noUi-pips {
    display: none;
}

/*
    Dropdown
*/

.dropdown-menu {
    padding: 0;
    border-radius: 0;
}

    .dropdown-item {
        padding: .75rem 1rem;
    }

    .dropdown-item.active,
    .dropdown-item:active {
        background-color: #1b1c77;
    }

.dropdown--line .btn {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    border-width: 0 0 .25rem;
    border-bottom-color: #1b1c77;
    font-size: 1.125rem;
}

    .dropdown--line .btn i {
        margin-left: auto;
    }

    .dropdown--line li {
        width: 100%;
    }

/*
    Alerts
*/

.alert {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    line-height: 1.1;
    border: 0;
    border-radius: 0;
}

.alert-dark {
    color: #cdedf2;
    background-color: #141414;
}

/*
    Lists
*/

.list-with-icon {
    padding: 0;
    list-style-type: none;
}

    .list-with-icon li {
        position: relative;
        padding-left: 1.5em;
    }

        .list-with-icon svg,
        .list-with-icon img,
        .list-with-icon i {
            position: absolute;
            top: .25em;
            left: 0;
            width: 1em;
            height: 1em;
            text-align: center;
        }

.list-with-icon--light {
    display: flex;
    align-items: center;
    padding: .125rem 1rem;
    font-size: 1rem;
    background-color: rgba(255 255 255 / 60%);
    border-radius: 1rem;
}
    
    .list-with-icon--light li:not(:last-child) {
        margin-right: 1.25rem;
    }

        .list-with-icon--light a {
            color: #000;
        }

.list-tags {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    font-size: .9375rem;
    list-style-type: none;
}

    .list-tags li {
        margin: 0 .25rem .25rem 0;
    }

        .list-tags li a {
            display: block;
            padding: .25rem .5rem;
            color: #1b1c77;
            background-color: #f7f7f7;
        }

        .list-tags li a:hover {
            color: #fff;
            background-color: #1b1c77;
        }

.list-colors {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
}

    .list-colors li {
        margin-right: .25rem;
        margin-bottom: .25rem;
    }

/*
    Titles
*/

.page-title {
    font-size: 2.5rem;
}

.section-title {
    font-size: 1.875rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b1c77;
}

.icon-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

    .icon-title span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.25rem;
        height: 3.25rem;
        margin-right: 1rem;
        background-color: #1b1c77;
    }

        .icon-title span svg {
            display: block;
            width: 45%;
            height: 45%;
            fill: #fff;
        }

.icon-title--lg {
    font-size: 1.875rem;
    color: #1b1c77;
}

    .icon-title--lg span {
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
    }

        .icon-title--lg span svg {
            width: 100%;
            height: 100%;
            fill: #1b1c77;
        }

.uppercase-title {
    text-transform: uppercase;
    font-size: 1.25rem;
}

.paragraph-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.text-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
}

/*
    Quotes
*/

blockquote {
    padding-left: 2.5rem;
    border-left: 5px solid #cdedf2;
    color: #1b1c77;
}

.quote {
    position: relative;
    padding-left: 4.5rem;
    font-size: 1.25rem;
    font-style: italic;
    color: #787878;
}

.quote:before {
    position: absolute;
    content: "„";
    top: -.125em;
    left: 0;
    width: 4.5rem;
    text-align: center;
    font-family: Georgia, Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: 4.5rem;
    line-height: 0;
    color: #1b1c77;
}

.testimonial {
    padding: 0;
    border: 0;
    font-size: 2rem;
    line-height: 1.25;
    color: #1b1c77;
}

    .testimonial p {
        margin-bottom: .25rem;
    }

    .testimonial cite {
        font-style: normal;
        font-weight: 700;
        font-size: .6875em;
        color: #000;
    }

/*
    Labels
*/

.label {
    display: inline-block;
    padding: .5rem 1.5rem;
    font-size: 1.25rem;
    color: #1b1c77;
    background-color: #cdedf2;
}

/*
    Breadcrumb
*/

.breadcrumb {
    font-size: .875rem;
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: "|";
    }

/*
    Figures
*/

figcaption,
.figcaption {
    padding: 1.25rem 2rem;
    /*background-color: #f0f0f0;*/
    text-align: center;
}

/*
    Pagination
*/

.pagination {
    margin-left: -.5rem;
    margin-right: -.5rem;
    font-size: 1rem;
}

    .pagination li {
        margin: 0 .5rem 1rem;
    }

        .pagination li span {
            font-weight: 700;
        }

/*
    Info Text
*/

.info-text {
    position: relative;
    padding-left: 5rem;
    font-weight: 700;
}

    .info-text svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 3.5rem;
        height: 3.5rem;
        fill: #1b1c77;
    }

.info-text--sm {
    padding-left: 4rem;
    font-size: 1rem;
    font-weight: 400;
    color: #1b1c77;
}

    .info-text--sm svg {
        width: 2.75rem;
        height: 2.75rem;
    }

/*
    Icons
*/

.info-icon {
    display: block;
    width: 1.375rem;
    min-width: 1.375rem;
    height: 1.375rem;
}

    .info-icon svg {
        display: block;
        width: 100%;
        height: 100%;
        fill: #828282;
    }

/*
    Tables
*/

.table {
    font-size: 1rem;
}

    .table th,
    .table td {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .table > :not(:last-child) > :last-child > * {
        border-bottom-width: 3px;
        border-bottom-color: #cfcfcf;
    }

.table--responsive th {
    padding: 1rem .5rem 1rem 0;
    vertical-align: middle;
}

.table--responsive td {
    padding: .5rem .5rem .5rem 0;
    vertical-align: middle;
}

.table--cart th,
.table--cart td {
    vertical-align: middle;
    padding-left: 0;
}

    .table--cart .table--cart__thumbnail {
        position: relative;
        width: 11.375rem;
        padding-right: 2rem;
    }

        .table--cart .table--cart__thumbnail img {
            display: block;
            width: 100%;
        }

        .table--cart__remove {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            top: 1rem;
            left: 0;
            width: 2.5rem;
            height: 2.5rem;
            padding: 0;
            border: 0;
            font-size: 1.25rem;
            color: #bd1622;
            background-color: #fff;
        }
        
        .cart__remove {
            width: 2.5rem;
            height: 2.5rem;
            padding: 0;
            border: 0;
            font-size: 1.25rem;
            color: #bd1622;
            background-color: #fff;
        }

        .table--cart__remove:hover {
            color: #000;
        }
        
        .cart__remove:hover {
            color: #000;
        }
        
    .table--cart .table--cart__quantity {
        padding-right: 0;
        text-align: right;
    }

.table--offer caption {
    padding: .75rem .5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background-color: #1b1c77;
}

.table--offer th,
.table--offer td {
    border-bottom-width: 0;
    padding: .5rem;
}

.table--offer tbody td:nth-child(1n + 7) {
    background-color: #f6f6f6;
}

/*
    Color Chooser
*/

.color-btn {
    display: flex;
    align-items: center;
    text-decoration: underline;
}

.color-btn:hover {
    text-decoration: none;
}

    .color-btn .color-icon {
        margin-right: .5rem;
    }

.color-icon {
    display: inline-block;
    overflow: hidden;
    width: 1.25rem;
    height: 1.25rem;
    color: transparent;
    border-radius: 100%;
    border: solid 1px #000000;
}

/* GLOBALS
================================================== */

.link {
    text-decoration: underline;
}

.link:hover {
    text-decoration: none;
}

    .link svg {
        display: inline-block;
        vertical-align: middle;
        width: 1.25rem;
        height: 1.25rem;
        fill: #1b1c77;
    }

.link--simple {
    text-decoration: none;
}

.miw--200 {
    min-width: 12.5rem;
}

.h--50 {
    height: 3.125rem;
}

.ratio img {
    object-fit: cover;
}

.font-weight--700 {
    font-weight: 700;
}

.ratio--33 {
    height: 33rem;
}

.ratio--29 {
    height: 29rem;
}

.ratio--19 {
    height: 19rem;
}

.bg--light-gray {
    background-color: #f7f7f7;
}

.bg--gray {
    background-color: #f0f0f0;
}

.bg--primary {
    background-color: #1b1c77;
}

.bg--secondary {
    background-color: #cdedf2;
}

.c--primary {
    color: #1b1c77;
}

.c--danger {
    color: #bd1622;
}

.c--gray {
    color: #828282;
}

.c--white {
    color: #fff;
}

.text-success {
    color: #0ec173 !important;
}

.text--underline {
    text-decoration: underline;
}

.text--sm {
    font-size: 1rem;
}

.text--lg {
    font-size: 1.25rem;
}

.text--xl {
    font-size: 1.5rem;
}

.text--404 {
    margin-bottom: 1rem;
    font-size: calc(2.5rem + 5vw);
    font-weight: 700;
    line-height: 1;
    color: #1b1c77;
}

.border-bottom--dark {
    border-bottom-color: #000 !important;
}

.border-bottom--3 {
    border-bottom-width: 3px;
}

.table-layout--fixed {
    table-layout: fixed;
}

.font--numbers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    letter-spacing: .025em;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .expand-on-xs {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .icon-article {
        padding-left: 0;
    }

        .icon-article__intro {
            padding-left: 6.25rem;
        }

    .textchooser__content {
        height: 4rem;
        font-size: .875rem;
    }

    .gallery-carousel .swiper-slide {
        max-width: 200px;
    }

    .timeline__number {
        font-size: 1.5rem;
    }

    .modal-body .container {
        padding: 0;
    }

}

/*
	SM and down
*/

@media screen and (max-width: 767px) {

    .ratio--33 {
        height: 12rem;
    }

    .ratio--29 {
        height: 11rem;
    }

    .ratio--19 {
        height: 8rem;
    }

    .alert {
        font-size: 1rem;
    }

    blockquote {
        font-size: 1.5rem;
    }
    
    .team-carousel .swiper-slide {
        width: 15rem;
    }

    .stepbar__step {
        min-height: 3rem;
        padding-bottom: .5rem;
        font-size: .875rem;
        line-height: 1;
    }

        .stepbar__step span {
            width: 1.5rem;
            min-width: 1.5rem;
            height: 1.5rem;
            margin-right: .5rem;
        }

}

/*
	MD and down
*/

@media screen and (max-width: 991px) {

    .sticky-info {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: .75rem 1rem;
        text-align: center;
    }

        .sticky-info__title {
            margin-bottom: .5rem;
        }

            .sticky-info__title strong {
                display: inline;
            }

        .sticky-info a {
            display: inline-block;
            margin-right: 1rem;
        }

    .table--responsive thead {
        display: none;
    }

    .table--responsive tbody {
        display: block;
    }

        .table--responsive tr {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #cfcfcf;
        }

            .table--responsive tr td {
                display: flex;
                flex-wrap: wrap;
                width: 50%;
                border: 0;
            }

            .table--responsive tr td:before {
                display: block;
                content: attr(data-title);
                width: 100%;
                font-weight: 700;
                color: #000;
            }

            .table--responsive tr td.table__price {
                width: 100%;
            }

    .table--properties td {
        padding-bottom: 0;
        padding-top: 0;
    }

    .table--properties td:last-child {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 1.25rem;
    }

    .table--cart tbody {
        display: block;
    }

        .table--cart tr {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #cfcfcf;
        }

        .table--cart tr:last-child {
            margin-bottom: 0;
        }

            .table--cart tr td {
                display: flex;
                flex-wrap: wrap;
                border: 0;
            }

            .table--cart .table--cart__thumbnail {
                width: 100%;
                padding-right: 0;
            }

            .table--cart .table--cart__property {
                width: 50%;
                padding-top: .25rem;
                padding-bottom: .25rem;
            }

            .table--cart .table--cart__quantity,
            .table--cart .table--cart__quantity > * {
                width: 100%;
            }

            .table--cart .table--cart__quantity {
                padding-top: .25rem;
            }

                .table--cart .table--cart__quantity > * > span {
                    display: block;
                    width: 50%;
                    text-align: left;
                }

    .table--offer tr {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .table--offer tr.bg--light-gray {
        padding-top: .5rem;
        padding-bottom: .5rem;
        border-bottom-width: 0;
    }

    /*.table--offer tr.bg--light-gray + tr {
        
    }*/

    .table--offer tr.border-bottom--3 {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .table--offer tbody td:nth-child(1n + 7) {
        background-color: transparent;
    }

}


/*
	LG and down
*/

@media screen and (max-width: 1199px) {

    /*
		Navigation
	*/

	.mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 1.25rem;
		height: 14px;
        margin-left: 2rem;
		transition: all .3s;
	}

        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 2px;
            background: #000;
        }

    .main-menu {
        display: none;
    }

}

/*
    MD and up
*/

@media screen and (min-width: 768px) {
    
    .photo-section {
        overflow: initial;
        padding: 2rem;
        background: url("../img/photo-bg.jpg") top left no-repeat;
        background-size: cover;
    }

        .photo-section__header {
            height: auto;
            padding: 0;
            background: transparent;
        }

            .photo-section__title {
                max-width: none;
            }

            .photo-section__header .link {
                max-width: none;
            }

        .photo-section__body {
            padding: 0;
            background: transparent;
        }

        .photo-section__phone {
            position: absolute;
            display: block;
            bottom: 0;
            left: 45%;
            height: calc(100% + 1rem);
        }

    .team-carousel .swiper-wrapper {
        flex-wrap: wrap;
        width: auto !important;
        margin-left: -.75rem;
        margin-right: -.75rem;
        transform: none !important;
    }

        .team-carousel .swiper-wrapper .swiper-slide {
            width: 25%;
            margin-bottom: 1rem;
            margin-right: 0 !important;
            padding: 0 .75rem;
        }
  
    .figure--cover {
        position: relative;
    }

        .figure--cover img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

}

/*
	LG and up
*/

@media screen and (min-width: 992px) {

    .footer .list-with-icon li {
        padding-left: 0;
        padding-right: 1.5em;
    }

        .footer .list-with-icon li i {
            left: auto;
            right: 0;
        }

        .section--split-picture {
            position: relative;
            display: flex;
            align-items: center;
            min-height: calc(100vh - 7.5rem);
        }

            .section--split-picture .section__bg {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                width: 50%;
                min-height: auto;
                margin: 0;
            }

    .hero {
        height: 38rem;
        padding: 5rem 7rem;
    }

        .hero__title {
            font-size: 2.75rem;
        }

    .product-box figure {
        margin: 0;
    }

    .product-box__content {
        padding: 2rem;
    }

    .product-box:hover {
        box-shadow: 0 1rem 1.5rem rgba(0 0 0 / 10%);
    }

        .product-box:hover .btn {
            border-color: #1b1c77;
            color: #fff;
            background-color: #1b1c77;
        }

        .product-box:hover .product-box__title {
            color: #1b1c77;
        }

    .post-box--lg {
        font-size: 1.125rem;
    }

        .post-box--lg .post-box__title {
            font-size: 2.5rem;
        }

    .page-title {
        font-size: 2.875rem;
    }

    .section-title--lg {
        font-size: 2.25rem;
    }

    .icon-title--lg {
        font-size: 2.625rem;
    }

    .number-box {
        padding: 2.5rem 4.5rem;
    }

    .table--responsive th {
        min-width: 55px;
    }

    .table--responsive th.price-th {
        text-align: left !important;
        padding-left: 25px;
    }

    .table--responsive th.price-th-with-controll {
        padding-left: 8px;
    }
}
 
/*
    XL and up
*/
 
@media screen and (min-width: 1200px) {

    body {
        padding-top: 7.5rem;
    }

    .header {
        height: 7.5rem;
        border-bottom: 0;
    }

    .header--sticky {
        height: 4.5rem;
    }

        .header__logo {
            height: 3.4375rem;
        }

    .category-carousel .swiper-slide {
        width: 100%;
        min-width: auto;
    }

    .photo-section {
        padding: 6rem 8rem;
    }

        .photo-section__subtitle {
            font-size: 1.5rem;
        }

        .photo-section__title {
            max-width: none;
            font-size: 4rem;
        }

        .photo-section__phone {
            left: 40%;
            height: calc(100% + 3.125rem);
        }
    
    .team-carousel .swiper-wrapper .swiper-slide {
        width: 16.666667%;
    }

    .panel {
        padding: 2.5rem 2.5rem 1rem;
        background-color: #f0f0f0;
    }

    .table--responsive th {
        min-width: 70px;
    }

    .table--responsive th.price-th {
        padding-left: 42px;
    }

    .table--responsive th.price-th-with-controll {
        padding-left: 21px;
    }
}

@media screen and (min-width: 1400px){
    .table--responsive th.price-th {
        padding-left: 34px;
    }

    .table--responsive th.price-th-with-controll {
        padding-left: 12px;
    }

    .table--responsive th {
        min-width: 90px;
    }
}


/*
	XXXL and up
*/

@media screen and (min-width: 1521px) {

    html {
        font-size: 100%;
    }

    .d-xxxl {
        display: block;
    }

    .container {
        max-width: 1464px;
    }

    .table--cart__remove {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .cart__remove {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .table--responsive th.price-th {
        text-align: left !important;
        padding-left: 52px;
    }

    .table--responsive th.price-th-with-controll {
        padding-left: 26px;;
    }
}


#gdprCookiemManagerModal {
    z-index: 9999999;
    background-color: rgba(255, 255, 255, 0.7);
}

#gdprCookiemManagerModal > div {
    position: fixed;

    top: 50%;
    z-index: 99999;
    background-color: white;
    border: 1px solid black;
    max-width: 1000px;
    left: 50%;
    transform: translate(-50%, -50%);
}

#gdprCookiemManagerModal.show {
    display: block;
}

.gdpr-modal-content {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.cookie-consent-form-content {
    overflow-y: auto;
    max-height: 300px;
}

.gdpr-modal-close {
    position: absolute;
    right: 15px;
    font-size: xx-large;
    line-height: 25px;
    top: 10px;
}

@media screen and (max-width: 769px) {
    #gdprCookiemManagerModal > div {
        max-width: initial;
        width: 80vw;
    }
}

