﻿

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive::before {
        display: block;
        content: "";
    }

    .embed-responsive .embed-responsive-item,
    .embed-responsive iframe,
    .embed-responsive embed,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.embed-responsive-21by9::before {
    padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }

    .float-sm-right {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }

    .float-md-right {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }

    .float-lg-right {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }

    .float-xl-right {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports (position: sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.shadow-sm {
    box-shadow: var(--box-shadow) !important;
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--box-shadow) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.3125rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.3125rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.3125rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.3125rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.3125rem !important;
}

.m-2 {
    margin: 0.625rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.625rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.625rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.625rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.625rem !important;
}

.m-3 {
    margin: 1.25rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1.25rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1.25rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1.25rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1.25rem !important;
}

.m-4 {
    margin: 1.875rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.875rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.875rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.875rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.875rem !important;
}

.m-5 {
    margin: 3.75rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3.75rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3.75rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3.75rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3.75rem !important;
}

.m-6 {
    margin: 5.625rem !important;
}

.mt-6,
.my-6 {
    margin-top: 5.625rem !important;
}

.mr-6,
.mx-6 {
    margin-right: 5.625rem !important;
}

.mb-6,
.my-6 {
    margin-bottom: 5.625rem !important;
}

.ml-6,
.mx-6 {
    margin-left: 5.625rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.3125rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.3125rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.3125rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.3125rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.3125rem !important;
}

.p-2 {
    padding: 0.625rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.625rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.625rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.625rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.625rem !important;
}

.p-3 {
    padding: 1.25rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1.25rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1.25rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1.25rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1.25rem !important;
}

.p-4 {
    padding: 1.875rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.875rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.875rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.875rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.875rem !important;
}

.p-5 {
    padding: 3.75rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3.75rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3.75rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3.75rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3.75rem !important;
}

.p-6 {
    padding: 5.625rem !important;
}

.pt-6,
.py-6 {
    padding-top: 5.625rem !important;
}

.pr-6,
.px-6 {
    padding-right: 5.625rem !important;
}

.pb-6,
.py-6 {
    padding-bottom: 5.625rem !important;
}

.pl-6,
.px-6 {
    padding-left: 5.625rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.3125rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.3125rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.3125rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.3125rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.3125rem !important;
    }

    .m-sm-2 {
        margin: 0.625rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.625rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.625rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.625rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.625rem !important;
    }

    .m-sm-3 {
        margin: 1.25rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1.25rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1.25rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1.25rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1.25rem !important;
    }

    .m-sm-4 {
        margin: 1.875rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.875rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.875rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.875rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.875rem !important;
    }

    .m-sm-5 {
        margin: 3.75rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3.75rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3.75rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3.75rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3.75rem !important;
    }

    .m-sm-6 {
        margin: 5.625rem !important;
    }

    .mt-sm-6,
    .my-sm-6 {
        margin-top: 5.625rem !important;
    }

    .mr-sm-6,
    .mx-sm-6 {
        margin-right: 5.625rem !important;
    }

    .mb-sm-6,
    .my-sm-6 {
        margin-bottom: 5.625rem !important;
    }

    .ml-sm-6,
    .mx-sm-6 {
        margin-left: 5.625rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.3125rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.3125rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.3125rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.3125rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.3125rem !important;
    }

    .p-sm-2 {
        padding: 0.625rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.625rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.625rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.625rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.625rem !important;
    }

    .p-sm-3 {
        padding: 1.25rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1.25rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1.25rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1.25rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1.25rem !important;
    }

    .p-sm-4 {
        padding: 1.875rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.875rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.875rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.875rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.875rem !important;
    }

    .p-sm-5 {
        padding: 3.75rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3.75rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3.75rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3.75rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3.75rem !important;
    }

    .p-sm-6 {
        padding: 5.625rem !important;
    }

    .pt-sm-6,
    .py-sm-6 {
        padding-top: 5.625rem !important;
    }

    .pr-sm-6,
    .px-sm-6 {
        padding-right: 5.625rem !important;
    }

    .pb-sm-6,
    .py-sm-6 {
        padding-bottom: 5.625rem !important;
    }

    .pl-sm-6,
    .px-sm-6 {
        padding-left: 5.625rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.3125rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.3125rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.3125rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.3125rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.3125rem !important;
    }

    .m-md-2 {
        margin: 0.625rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.625rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.625rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.625rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.625rem !important;
    }

    .m-md-3 {
        margin: 1.25rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1.25rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1.25rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1.25rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1.25rem !important;
    }

    .m-md-4 {
        margin: 1.875rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.875rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.875rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.875rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.875rem !important;
    }

    .m-md-5 {
        margin: 3.75rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3.75rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3.75rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3.75rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3.75rem !important;
    }

    .m-md-6 {
        margin: 5.625rem !important;
    }

    .mt-md-6,
    .my-md-6 {
        margin-top: 5.625rem !important;
    }

    .mr-md-6,
    .mx-md-6 {
        margin-right: 5.625rem !important;
    }

    .mb-md-6,
    .my-md-6 {
        margin-bottom: 5.625rem !important;
    }

    .ml-md-6,
    .mx-md-6 {
        margin-left: 5.625rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.3125rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.3125rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.3125rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.3125rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.3125rem !important;
    }

    .p-md-2 {
        padding: 0.625rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.625rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.625rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.625rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.625rem !important;
    }

    .p-md-3 {
        padding: 1.25rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1.25rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1.25rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1.25rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1.25rem !important;
    }

    .p-md-4 {
        padding: 1.875rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.875rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.875rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.875rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.875rem !important;
    }

    .p-md-5 {
        padding: 3.75rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3.75rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3.75rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3.75rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3.75rem !important;
    }

    .p-md-6 {
        padding: 5.625rem !important;
    }

    .pt-md-6,
    .py-md-6 {
        padding-top: 5.625rem !important;
    }

    .pr-md-6,
    .px-md-6 {
        padding-right: 5.625rem !important;
    }

    .pb-md-6,
    .py-md-6 {
        padding-bottom: 5.625rem !important;
    }

    .pl-md-6,
    .px-md-6 {
        padding-left: 5.625rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.3125rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.3125rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.3125rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.3125rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.3125rem !important;
    }

    .m-lg-2 {
        margin: 0.625rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.625rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.625rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.625rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.625rem !important;
    }

    .m-lg-3 {
        margin: 1.25rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1.25rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1.25rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1.25rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1.25rem !important;
    }

    .m-lg-4 {
        margin: 1.875rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.875rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.875rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.875rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.875rem !important;
    }

    .m-lg-5 {
        margin: 3.75rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3.75rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3.75rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3.75rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3.75rem !important;
    }

    .m-lg-6 {
        margin: 5.625rem !important;
    }

    .mt-lg-6,
    .my-lg-6 {
        margin-top: 5.625rem !important;
    }

    .mr-lg-6,
    .mx-lg-6 {
        margin-right: 5.625rem !important;
    }

    .mb-lg-6,
    .my-lg-6 {
        margin-bottom: 5.625rem !important;
    }

    .ml-lg-6,
    .mx-lg-6 {
        margin-left: 5.625rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.3125rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.3125rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.3125rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.3125rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.3125rem !important;
    }

    .p-lg-2 {
        padding: 0.625rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.625rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.625rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.625rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.625rem !important;
    }

    .p-lg-3 {
        padding: 1.25rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1.25rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1.25rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1.25rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1.25rem !important;
    }

    .p-lg-4 {
        padding: 1.875rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.875rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.875rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.875rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.875rem !important;
    }

    .p-lg-5 {
        padding: 3.75rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3.75rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3.75rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3.75rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3.75rem !important;
    }

    .p-lg-6 {
        padding: 5.625rem !important;
    }

    .pt-lg-6,
    .py-lg-6 {
        padding-top: 5.625rem !important;
    }

    .pr-lg-6,
    .px-lg-6 {
        padding-right: 5.625rem !important;
    }

    .pb-lg-6,
    .py-lg-6 {
        padding-bottom: 5.625rem !important;
    }

    .pl-lg-6,
    .px-lg-6 {
        padding-left: 5.625rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.3125rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.3125rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.3125rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.3125rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.3125rem !important;
    }

    .m-xl-2 {
        margin: 0.625rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.625rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.625rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.625rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.625rem !important;
    }

    .m-xl-3 {
        margin: 1.25rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1.25rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1.25rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1.25rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1.25rem !important;
    }

    .m-xl-4 {
        margin: 1.875rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.875rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.875rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.875rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.875rem !important;
    }

    .m-xl-5 {
        margin: 3.75rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3.75rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3.75rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3.75rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3.75rem !important;
    }

    .m-xl-6 {
        margin: 5.625rem !important;
    }

    .mt-xl-6,
    .my-xl-6 {
        margin-top: 5.625rem !important;
    }

    .mr-xl-6,
    .mx-xl-6 {
        margin-right: 5.625rem !important;
    }

    .mb-xl-6,
    .my-xl-6 {
        margin-bottom: 5.625rem !important;
    }

    .ml-xl-6,
    .mx-xl-6 {
        margin-left: 5.625rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.3125rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.3125rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.3125rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.3125rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.3125rem !important;
    }

    .p-xl-2 {
        padding: 0.625rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.625rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.625rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.625rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.625rem !important;
    }

    .p-xl-3 {
        padding: 1.25rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1.25rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1.25rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1.25rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1.25rem !important;
    }

    .p-xl-4 {
        padding: 1.875rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.875rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.875rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.875rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.875rem !important;
    }

    .p-xl-5 {
        padding: 3.75rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3.75rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3.75rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3.75rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3.75rem !important;
    }

    .p-xl-6 {
        padding: 5.625rem !important;
    }

    .pt-xl-6,
    .py-xl-6 {
        padding-top: 5.625rem !important;
    }

    .pr-xl-6,
    .px-xl-6 {
        padding-right: 5.625rem !important;
    }

    .pb-xl-6,
    .py-xl-6 {
        padding-bottom: 5.625rem !important;
    }

    .pl-xl-6,
    .px-xl-6 {
        padding-left: 5.625rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.text-monospace {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}


.menubar-link > i + span:not(:empty),
.menubar-link > i + em:not(:empty) {
    padding-left: 0.5em;
}
.menubar-link > span:not(:empty) + i,
.menubar-link > em:not(:empty) + i {
    margin-left: 0.5em;
}


.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: normal;
    color: #22262a;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: #17191c;
        text-decoration: none;
        background-color: #f7f7f9;
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #17191c;
        text-decoration: none;
        background-color: #ebebf0;
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #8d9ba9;
        background-color: transparent;
    }

.page-title {
    margin-bottom: 3.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

    .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        color: #8d9ba9;
        content: "/";
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: underline;
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: none;
    }

.breadcrumb-item.active {
    color: #8d9ba9;
}


.breadcrumb {
    padding: 0;
    background: none;
    font-size: 1.8125rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-item:after {
    content: '>';
    padding: 0 0.5rem;
}

div.breadcrumb-item:after {
    display: none;
}

.breadcrumb > li + li::before {
    display: none !important;
}

.breadcrumb-item > a {
    color: #393f46 !important;
    display: inline-block;
}


/*article*/

.artlist-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-left: 0;
    margin-right: 0;
    /*.art-price-block {
        margin-top: 0.5rem;
    }*/
}

    .artlist-grid:not(.artlist-boxed).artlist::after {
        position: relative;
        content: '';
        width: 100%;
        height: 1px;
        background: #dee2e6;
        bottom: 1px;
    }

    .artlist-grid .art {
        border-bottom-color: #dee2e6;
        display: flex;
        flex-flow: column;
    }

    .artlist-grid .art {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .artlist-grid.artlist-boxed .art {
        flex-basis: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .artlist-grid .art-name,
    .artlist-grid .art-description {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .artlist-grid .art-name {
        height: 2.275rem;
    }

    .artlist-grid .art-description {
        height: 2.1125rem;
    }

    .artlist-grid.artlist-boxed .art-price-block {
        height: 2.1125rem;
    }

    .artlist-grid .art-delivery-info,
    .artlist-grid .art-pangv {
        box-sizing: content-box;
        min-height: 1.1375rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .artlist-grid .art-brand,
    .artlist-grid .art-pangv,
    .artlist-grid .art-shipsurcharge,
    .artlist-grid .art-more-opts {
        box-sizing: content-box;
        min-height: 1.05625rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .artlist-grid .art-oldprice {
        font-size: 0.80938rem;
    }

    .artlist-grid .art-variant-info {
        padding-left: 15px;
        padding-right: 15px;
    }

    .artlist-grid.artlist-1-col .art {
        flex-basis: 100% !important;
        max-width: initial !important;
    }

@media (min-width: 576px) {
    .artlist-grid.artlist-4-cols .art, .artlist-grid.artlist-5-cols .art, .artlist-grid.artlist-6-cols .art {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .artlist-grid.artlist-4-cols.artlist-boxed .art, .artlist-grid.artlist-5-cols.artlist-boxed .art, .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(33.33333% - 1rem);
        max-width: calc(33.33333% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }
}

@media (min-width: 768px) {
    .artlist-grid.artlist-5-cols .art {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .artlist-grid.artlist-5-cols.artlist-boxed .art {
        flex-basis: calc(33.33333% - 1rem);
        max-width: calc(33.33333% - 1rem);
    }

    .artlist-grid.artlist-6-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(20% - 1rem);
        max-width: calc(20% - 1rem);
    }
}

@media (min-width: 992px) {
    .artlist-grid.artlist-3-cols .art, .artlist-grid.artlist-4-cols .art {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .artlist-grid.artlist-3-cols.artlist-boxed .art, .artlist-grid.artlist-4-cols.artlist-boxed .art {
        flex-basis: calc(33.33333% - 1rem);
        max-width: calc(33.33333% - 1rem);
    }

    .artlist-grid.artlist-5-cols .art, .artlist-grid.artlist-6-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-5-cols.artlist-boxed .art, .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(16.66667% - 1rem);
        max-width: calc(16.66667% - 1rem);
    }
}

@media (min-width: 1200px) {
    .artlist-grid.artlist-4-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-4-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }

    .artlist-grid.artlist-5-cols .art {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .artlist-grid.artlist-5-cols.artlist-boxed .art {
        flex-basis: calc(20% - 1rem);
        max-width: calc(20% - 1rem);
    }

    .artlist-grid.artlist-6-cols .art {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(16.66667% - 1rem);
        max-width: calc(16.66667% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(12.5% - 1rem);
        max-width: calc(12.5% - 1rem);
    }
}

.artlist-grid.artlist-boxed {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

    .artlist-grid.artlist-boxed .art {
        background: #fff;
        border-color: transparent;
        margin: 0 0.5rem 1rem 0.5rem;
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 10px rgba(0, 0, 0, 0.15);
    }

.artlist-carousel {
    position: relative;
    overflow: hidden;
}

    .artlist-carousel .artlist-grid {
        flex-wrap: nowrap;
    }

    .artlist-carousel .artlist {
        margin-bottom: 0;
    }

    .artlist-carousel .art {
        border-bottom: none;
    }

    .artlist-carousel .art-drop {
        display: none;
    }

.slick-slider.artlist-grid {
    display: block !important;
}

.slick-slider .art {
    display: inline-block !important;
    max-width: none !important;
}

.artlist-no-separators .artlist-grid:not(.artlist-boxed) .art {
    border-bottom-width: 0 !important;
}

.artlist-no-separators .artlist-grid:not(.artlist-boxed):after {
    height: 0 !important;
}





.artlist-actions {
    margin-bottom: 1rem;
}

.artlist-action {
    padding: 0 0.25rem;
}

    .artlist-action label {
        font-size: 0.8125rem;
        margin-bottom: 0.35rem;
    }

    .artlist-action .form-group {
        margin-bottom: 0;
    }

    .artlist-action .btn {
        border-radius: 0;
        transition: none;
    }

    .artlist-action .mf-dropdown {
        display: block;
    }

.artlist-action-group {
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -0.25rem;
}

.artlist-action--filter,
.artlist-action--sort {
    flex-grow: 1;
    max-width: 100%;
}

.artlist-action--pager > * {
    position: relative;
}

    .artlist-action--pager > *:not(:first-child) {
        margin-left: -1px;
    }

.artlist-action--pager .btn-pager-prev {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.artlist-action--pager .btn-pager-next {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

@media (max-width: 360px) {
    .artlist-actions--top .artlist-action--pagesize .mf-dropdown {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .btn-artlist-action,
    .btn-artlist-action span {
        font-weight: 400 !important;
    }

    .artlist-action-group .btn {
        font-size: 1rem;
        text-align: left;
        border-radius: 0.25rem;
    }

        .artlist-action-group .btn > b {
            background: transparent;
        }
}

@media (min-width: 992px) {
    .btn-artlist-action {
        font-weight: 600;
    }
}

.artlist-actions--top {
    display: flex;
    flex-wrap: wrap;
}

    .artlist-actions--top .artlist-action-group {
        width: 100%;
    }

    .artlist-actions--top .artlist-action-group--filtersort {
        flex: 1 1 0;
        max-width: 100%;
    }

    .artlist-actions--top .artlist-action-group--page {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        padding-left: 0.5rem;
    }

    .artlist-actions--top .artlist-action--pagesize,
    .artlist-actions--top .artlist-action--pager {
        display: none !important;
    }

@media (min-width: 992px) {
    .artlist-actions--top {
        flex-wrap: nowrap;
        border-bottom: 1px solid #dee2e6;
    }

        .artlist-actions--top .artlist-action-group--filtersort {
            flex-grow: 0;
        }

        .artlist-actions--top .artlist-action--pagesize,
        .artlist-actions--top .artlist-action--pager {
            display: flex !important;
        }

        .artlist-actions--top .artlist-action-group--page {
            padding-left: 0;
        }

        .artlist-actions--top .artlist-action-group {
            width: auto;
        }

        .artlist-actions--top .artlist-action-group--page {
            margin-left: auto;
        }
}


.artlist {
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.3;
    z-index: 3;
    border-collapse: collapse;
}

.art {
    position: relative;
    min-height: 1px;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    background: transparent;
    margin-top: -1px;
    margin-left: -1px;
    border-collapse: collapse;
    border-radius: 0.2rem;
}

    .art.active {
        background: #fff;
        border-color: rgba(0, 0, 0, 0) !important;
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 10px rgba(0, 0, 0, 0.15);
    }

.art-picture-block {
    position: relative;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.art-picture.no-picture:before {
    display: block;
    content: attr(data-content);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0rem;
    width: 100%;
    text-align: center;
    color: #b0bac3;
}

.art-picture.no-default-picture:before {
    top: 2rem;
}

.art-picture.no-default-picture img {
    display: none;
}

.art-badges {
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 10;
}

.art-badge {
    display: block;
    float: left;
    clear: both;
    position: relative;
    font-weight: normal;
    font-size: 0.85rem;
    border-radius: 0 0.85rem 0.85rem 0;
    padding-right: 0.85rem;
    margin-bottom: 0.2rem;
}

.art-data-block,
.art-info-block {
    position: relative;
}

.art-rating {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.art-brand {
    font-size: 0.8125rem;
    color: #8d9ba9;
    text-transform: uppercase;
}

.art-name {
    box-sizing: content-box;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

    .art-name > a {
        color: #393f46;
    }

.art-genericname {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .art-genericname > a {
        color: #393f46;
    }

.art-description {
    font-size: 0.8125rem;
    color: #8d9ba9;
    margin-bottom: 0.4rem;
}

.art-price-block {
    position: relative;
    margin-top: 0.5rem;
}

.art-price {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    color: #393f46;
}

    .art-price.art-price--offer {
        color: #f44336;
    }

    .art-price.badge {
        color: #fff;
    }

.art-oldprice {
    display: inline-block;
    padding-left: 0.25rem;
    color: #8d9ba9;
    text-decoration: line-through;
}

.art-pangv {
    font-size: 0.8125rem;
    color: #8d9ba9;
    padding-top: 0.25rem;
}

.art-shipsurcharge {
    font-size: 0.8125rem;
    color: #f44336;
    padding-top: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.art-legalinfo {
    font-size: 0.75rem;
    color: #8d9ba9;
}

.art-info-group {
    margin-bottom: 0.5rem;
}

.art-drop {
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: 0;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.15);
    padding-top: 1px;
    clip-path: inset(0 -5px -15px -5px);
    border-radius: 0 0 0.2rem 0.2rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.art.active .art-drop {
    opacity: 1;
    visibility: visible;
    z-index: 1059;
}

.art-btn-group {
    margin: 0;
}

    .art-btn-group .art-btn {
        display: block;
        border-radius: 0;
        border: none;
        box-shadow: none;
        transition: none;
        padding: 0.65rem 0;
    }

        .art-btn-group .art-btn.btn-secondary {
            color: #666;
        }

.art-variant-info {
    margin-bottom: 0.75rem;
}

.art-color-opts {
    position: relative;
}

    .art-color-opts::after {
        display: block;
        clear: both;
        content: "";
    }

.art-color-opt {
    float: left;
    display: block;
    width: 1rem;
    height: 1rem;
    margin-right: 2px;
    margin-bottom: 2px;
    text-decoration: none;
}

    .art-color-opt:hover {
        outline: 1px solid rgba(0, 0, 0, 0.3);
    }

.art-more-opts {
    font-size: 0.8125rem;
    color: #8d9ba9;
}

.art-variant-info > * + * {
    margin-top: 0.4rem;
}

.art-attrs {
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
}

    .art-attrs td {
        padding: 1px 0;
    }

        .art-attrs td:first-child {
            padding-right: 0.75rem;
            font-weight: 600;
        }

.artlist-lines .art {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border-bottom-color: #dee2e6;
}

.artlist-lines .art-data-block {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    padding-left: 20px;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.artlist-lines .art-picture-block {
    width: 200px;
    max-width: 200px;
}

.artlist-lines .art-actions-block {
    width: 220px;
    padding-left: 20px;
}

.artlist-lines .art-description {
    margin-bottom: 1rem;
}

.artlist-lines .art-info-block {
    display: block;
    position: relative;
    min-height: 1px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.artlist-lines .art-brand,
.artlist-lines .art-rating {
    position: relative;
    margin-bottom: 0;
}

.artlist-lines .art-brand-picture {
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 24px;
}

.artlist-lines .floating > .art-brand {
    padding-right: 90px;
    min-height: 20px;
}

.artlist-lines .floating > .art-rating {
    position: absolute;
    top: 0;
    right: 0;
}

.artlist-lines .art-name {
    font-size: 1rem;
    margin-bottom: 0.5em;
}

.artlist-lines .art-price {
    font-size: 1.6rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.artlist-lines .art-price--call {
    font-size: 1rem;
    color: #8d9ba9;
    font-weight: 400;
}

.artlist-lines .art-variant-info {
    margin-bottom: 1rem;
}

@media (max-width: 1199.98px) {
    .artlist-lines .art-picture-block {
        max-width: 180px;
    }

    .artlist-lines .art-actions-block {
        width: 200px;
    }
}

@media (max-width: 767.98px) {
    .artlist-lines .art-actions-block {
        display: block;
        padding-left: 0;
        padding-top: 1rem;
        width: 100%;
        /*position: static;*/
    }

    .artlist-lines .art-info-block {
        flex-basis: initial;
        flex-grow: initial;
    }
}

@media (max-width: 575.98px) {
    .artlist-lines .art-picture-block {
        max-width: 30%;
    }
}

.artlist-lines .delivery-time {
    white-space: normal;
}

.artlist-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-left: 0;
    margin-right: 0;
    /*.art-price-block {
        margin-top: 0.5rem;
    }*/
}

    .artlist-grid:not(.artlist-boxed).artlist::after {
        position: relative;
        content: '';
        width: 100%;
        height: 1px;
        background: #dee2e6;
        bottom: 1px;
    }

    .artlist-grid .art {
        border-bottom-color: #dee2e6;
        display: flex;
        flex-flow: column;
    }

    .artlist-grid .art {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .artlist-grid.artlist-boxed .art {
        flex-basis: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .artlist-grid .art-name,
    .artlist-grid .art-description {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .artlist-grid .art-name {
        height: 2.275rem;
    }

    .artlist-grid .art-description {
        height: 2.1125rem;
    }

    .artlist-grid.artlist-boxed .art-price-block {
        height: 2.1125rem;
    }

    .artlist-grid .art-delivery-info,
    .artlist-grid .art-pangv {
        box-sizing: content-box;
        min-height: 1.1375rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .artlist-grid .art-brand,
    .artlist-grid .art-pangv,
    .artlist-grid .art-shipsurcharge,
    .artlist-grid .art-more-opts {
        box-sizing: content-box;
        min-height: 1.05625rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .artlist-grid .art-oldprice {
        font-size: 0.80938rem;
    }

    .artlist-grid .art-variant-info {
        padding-left: 15px;
        padding-right: 15px;
    }

    .artlist-grid.artlist-1-col .art {
        flex-basis: 100% !important;
        max-width: initial !important;
    }

@media (min-width: 576px) {
    .artlist-grid.artlist-4-cols .art, .artlist-grid.artlist-5-cols .art, .artlist-grid.artlist-6-cols .art {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .artlist-grid.artlist-4-cols.artlist-boxed .art, .artlist-grid.artlist-5-cols.artlist-boxed .art, .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(33.33333% - 1rem);
        max-width: calc(33.33333% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }
}

@media (min-width: 768px) {
    .artlist-grid.artlist-5-cols .art {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .artlist-grid.artlist-5-cols.artlist-boxed .art {
        flex-basis: calc(33.33333% - 1rem);
        max-width: calc(33.33333% - 1rem);
    }

    .artlist-grid.artlist-6-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(20% - 1rem);
        max-width: calc(20% - 1rem);
    }
}

@media (min-width: 992px) {
    .artlist-grid.artlist-3-cols .art, .artlist-grid.artlist-4-cols .art {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .artlist-grid.artlist-3-cols.artlist-boxed .art, .artlist-grid.artlist-4-cols.artlist-boxed .art {
        flex-basis: calc(33.33333% - 1rem);
        max-width: calc(33.33333% - 1rem);
    }

    .artlist-grid.artlist-5-cols .art, .artlist-grid.artlist-6-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-5-cols.artlist-boxed .art, .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(16.66667% - 1rem);
        max-width: calc(16.66667% - 1rem);
    }
}

@media (min-width: 1200px) {
    .artlist-grid.artlist-4-cols .art {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .artlist-grid.artlist-4-cols.artlist-boxed .art {
        flex-basis: calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }

    .artlist-grid.artlist-5-cols .art {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .artlist-grid.artlist-5-cols.artlist-boxed .art {
        flex-basis: calc(20% - 1rem);
        max-width: calc(20% - 1rem);
    }

    .artlist-grid.artlist-6-cols .art {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .artlist-grid.artlist-6-cols.artlist-boxed .art {
        flex-basis: calc(16.66667% - 1rem);
        max-width: calc(16.66667% - 1rem);
    }

    .artlist-grid.artlist-8-cols .art {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .artlist-grid.artlist-8-cols.artlist-boxed .art {
        flex-basis: calc(12.5% - 1rem);
        max-width: calc(12.5% - 1rem);
    }
}

.artlist-grid.artlist-boxed {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

    .artlist-grid.artlist-boxed .art {
        background: #fff;
        border-color: transparent;
        margin: 0 0.5rem 1rem 0.5rem;
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 10px rgba(0, 0, 0, 0.15);
    }

.artlist-carousel {
    position: relative;
    overflow: hidden;
}

    .artlist-carousel .artlist-grid {
        flex-wrap: nowrap;
    }

    .artlist-carousel .artlist {
        margin-bottom: 0;
    }

    .artlist-carousel .art {
        border-bottom: none;
    }

    .artlist-carousel .art-drop {
        display: none;
    }

.slick-slider.artlist-grid {
    display: block !important;
}

.slick-slider .art {
    display: inline-block !important;
    max-width: none !important;
}

.artlist-no-separators .artlist-grid:not(.artlist-boxed) .art {
    border-bottom-width: 0 !important;
}

.artlist-no-separators .artlist-grid:not(.artlist-boxed):after {
    height: 0 !important;
}

.art.show-all-items {
    padding: 0 !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

    .art.show-all-items .show-all-items-link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-grow: 1;
        text-align: center;
        padding: 1rem;
        text-decoration: none !important;
        font-size: 1.25rem;
        font-weight: normal;
        color: inherit !important;
        background: rgba(0, 0, 0, 0.06);
        opacity: 0.5;
    }

        .art.show-all-items .show-all-items-link:hover {
            opacity: 0.75;
        }

        .art.show-all-items .show-all-items-link:active {
            opacity: 1;
        }





        /*Dropdown*/

.mf-dropdown {
    display: inline-block;
    position: relative;
}

    .mf-dropdown .btn {
        border-radius: 0;
        position: relative;
    }

        .mf-dropdown .btn > em {
            font-style: normal;
            font-variant: normal;
            font-weight: normal;
            color: #8d9ba9;
            font-size: 0.8125rem;
            font-size: 0.85em;
        }

            .mf-dropdown .btn > em > span {
                font-weight: 600;
                font-size: 1.166666em;
                color: #393f46;
            }

        .mf-dropdown .btn.has-caret {
            text-align: left;
            padding-right: 2rem;
        }

            .mf-dropdown .btn.has-caret.btn-sm, .mf-dropdown .btn-group-sm > .btn.has-caret, .mf-dropdown .fu-container:not(.xl) .fu-buttons .btn.has-caret, .fu-container:not(.xl) .fu-buttons .mf-dropdown .btn.has-caret {
                padding-right: 1.5rem;
            }

            .mf-dropdown .btn.has-caret.btn-lg, .mf-dropdown .btn-group-lg > .btn.has-caret {
                padding-right: 3rem;
            }

            .mf-dropdown .btn.has-caret > em,
            .mf-dropdown .btn.has-caret > span {
                display: block;
                margin-bottom: 1px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .mf-dropdown .btn.has-caret:after {
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                line-height: 1;
                font-size: inherit;
                font-weight: 900;
                font-family: "Font Awesome 5 Free";
                content: "";
                position: absolute;
                display: block;
                right: 1rem;
                line-height: 1;
                top: 50%;
                transform: translate3d(50%, -50%, 0);
            }

    .mf-dropdown .btn-sm.has-caret:after, .mf-dropdown .btn-group-sm > .has-caret.btn:after, .mf-dropdown .fu-container:not(.xl) .fu-buttons .has-caret.btn:after, .fu-container:not(.xl) .fu-buttons .mf-dropdown .has-caret.btn:after {
        right: 0.75rem;
    }

    .mf-dropdown .btn-lg.has-caret:after, .mf-dropdown .btn-group-lg > .has-caret.btn:after {
        right: 1.5rem;
    }

    .mf-dropdown select {
        position: absolute;
        opacity: 0;
        left: 0;
        width: 100%;
        top: 0;
        bottom: 0;
        cursor: pointer;
    }


    /*Product*/

.pd-section,
.pd-picture-block,
.pd-info,
.pd-offer {
    position: relative;
}

.pd-section {
    margin-bottom: 2rem;
}

.pd-data-col {
    display: block !important;
}

.pd-group {
    margin-bottom: 1rem;
}

    .pd-group > * {
        margin-bottom: 0.125rem;
    }

.pd-description, .pd-bundle-item-description {
    color: #8d9ba9;
    line-height: 1.3;
}

.pd-tabs {
    margin-bottom: 1rem;
}

    .pd-tabs > .nav-tabs {
        justify-content: center;
    }

.pd-picture {
    display: block;
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 100%;
    text-decoration: none !important;
    outline: none !important;
}

    .pd-picture > img {
        position: absolute;
        max-width: 100%;
        max-height: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

.pd-name {
    font-size: 1.75rem;
    font-weight: bold;
}

.pd-name-sm {
    font-size: 1.25rem;
    font-weight: 600;
}

.pd-info .page-title {
    margin-bottom: 0;
}

.pd-brand {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: 600;
}

.pd-brand-picture {
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 32px;
}

.pd-attrs td {
    padding: 0.2rem 0;
    vertical-align: middle;
    line-height: 1.3;
}

    .pd-attrs td:first-child {
        padding-right: 1rem;
        font-weight: 600;
    }

.pd-stock.pd-instock {
    color: #3d8b40;
}

.pd-stock.pd-outofstock {
    font-weight: bold;
    color: #f44336;
}

.pd-specs-table tr:first-child td {
    border-top-width: 0;
}

.pd-spec-name {
    font-weight: 600;
    width: 20%;
}

.pd-review-summary {
    line-height: 1.3;
}

    .pd-review-summary > * {
        display: inline-block;
    }

    .pd-review-summary .pd-rating-box .rating {
        vertical-align: sub;
    }

    .pd-review-summary .pd-review-link {
        position: relative;
        font-weight: 600;
    }

        .pd-review-summary .pd-review-link:before {
            content: '|';
            display: inline-block;
            padding: 0 0.5rem;
            color: #8d9ba9;
        }

.pd-offer {
    background: #f7f7f9;
    padding: 15px;
    line-height: 1.3;
    width: 100%;
    border-radius: 0.25rem;
}

.row.pd-offer-actions {
    margin-left: -0.2rem;
    margin-right: -0.2rem;
    margin-top: auto;
}

    .row.pd-offer-actions > * {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    .row.pd-offer-actions .pd-offer-action-qty {
        max-width: 120px;
        min-width: 90px;
    }

.pd-offer-price {
    margin-bottom: 1rem;
}

.pd-price {
    font-size: 1.8rem;
    font-weight: 500;
    color: #393f46;
}

    .pd-price.pd-price-sm {
        font-size: 1.5rem;
    }

    .pd-price.pd-price--offer {
        color: #f44336;
    }

    .pd-price.pd-price--call {
        font-size: 1rem;
        color: #8d9ba9;
        font-weight: 400;
    }

    .pd-price .badge {
        font-size: 100%;
        font-weight: initial;
    }

.pd-price-block + .pd-price-block .pd-price {
    text-decoration: line-through;
    color: #abadb1;
    font-weight: 400;
}

.pd-price-label {
    line-height: 1;
    font-weight: 600;
}

.pd-oldprice {
    display: inline-block;
    color: #8d9ba9;
    text-decoration: line-through;
}

.pd-saving-percent {
    font-weight: 600;
    color: #f44336;
}

.pd-callforprice,
.pd-loginforprice {
    font-size: 1.2rem;
}

.pd-legalinfo {
    font-size: 0.8125rem;
    color: #abadb1;
}

.pd-tierprices .table {
    background-color: #fff;
    margin-bottom: 0;
    font-size: 0.8125rem;
    overflow-x: auto;
}

    .pd-tierprices .table th, .pd-tierprices .table td {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .pd-tierprices .table th {
        font-weight: 600;
    }

    .pd-tierprices .table .pd-tierprice-qty {
        font-weight: bold;
    }

.pd-tag {
    text-decoration: none !important;
    display: inline-flex;
    padding: 0.5rem;
    margin: 0 0.2rem 0.4rem 0;
    font-weight: 600;
    color: #393f46;
    font-size: 0.875rem;
    line-height: 1;
    background-color: #f7f7f9;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.pd-tag-count {
    color: #8d9ba9;
    font-weight: 400;
}

.pd-bundle-item {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

    .pd-bundle-item .form-group:last-child {
        margin-bottom: 0;
    }

.pd-bundle-item-name {
    font-weight: 600;
}

    .pd-bundle-item-name > a {
        color: #393f46;
    }

.pd-bundle-item-offer {
    line-height: 1.3;
}

    .pd-bundle-item-offer > * + * {
        margin-top: 0.5rem;
    }

.pd-bundle-price-offer {
    font-weight: 600;
    font-size: 1rem;
}

.pd-bundle-price-regular {
    text-decoration: line-through;
    opacity: 0.7;
}

.pd-bundle-summary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.pd-bundle-summary-item {
    position: relative;
    line-height: 1.3;
    padding: 0.2rem;
}

    .pd-bundle-summary-item a:hover {
        text-decoration: none;
    }

    .pd-bundle-summary-item:after {
        display: inline-block;
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
        content: "";
        padding: 0 0.2rem;
    }

    .pd-bundle-summary-item:last-child:after {
        display: none;
        content: '';
    }

.pd-bundle-summary-item-qty {
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 80%;
}

.pd-variants:not(:last-child) {
    margin-bottom: 1.5rem;
}

.pd-variant {
    position: relative;
    padding: 0.5rem 0;
}

    .pd-variant .pd-name {
        font-size: 1rem !important;
    }

    .pd-variant .pd-offer {
        display: flex;
        flex-direction: column;
    }


    /*slide detail*/

.gal-box {
    position: relative;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.gal {
    position: relative;
}

.gal-item {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.gal-item-viewport {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    text-align: center;
    outline: none !important;
}

.gal-item-content {
    position: absolute;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.gal .gal-item-viewport.no-picture .gal-item-content {
    margin: 0 auto;
}

.gal .gal-item-viewport.no-picture:before {
    display: block;
    content: attr(data-content);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #b0bac3;
}

.gal-nav {
    max-height: 560px;
    opacity: 0;
    text-align: center;
}

    .gal-nav.gal-initialized {
        opacity: 1;
    }

        .gal-nav.gal-initialized .gal-item-content {
            display: block;
        }

    .gal-nav .gal-list {
        position: relative;
        overflow: hidden;
    }

    .gal-nav .gal-track {
        position: relative;
        transition: transform 0.25s ease-in-out;
    }

    .gal-nav .gal-item {
        padding: 4px 1px;
    }

    .gal-nav .gal-item-viewport {
        border: 1px solid rgba(0, 0, 0, 0.12);
    }

        .gal-nav .gal-item-viewport:hover {
            border-color: rgba(0, 0, 0, 0.35);
        }

    .gal-nav .gal-current .gal-item-viewport {
        border-color: rgba(0, 0, 0, 0.6);
        outline: 1px solid rgba(0, 0, 0, 0.6) !important;
    }

    .gal-nav .gal-item-content {
        padding: 3px;
    }

.gal-nav-cell {
    display: table-cell;
    vertical-align: top;
    padding-right: 1.2rem;
    max-height: 100%;
    overflow: hidden;
    width: 4.5rem;
}

.gal-cell {
    display: table-cell;
    vertical-align: top;
}

@media (min-width: 1200px) {
    .gal-nav-cell {
        width: 5.5rem;
    }
}

@media (max-width: 575.98px) {
    .gal-nav-cell {
        display: none !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .gal .slick-dots {
        display: none !important;
    }

    .gal.slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .gal-nav-cell {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .gal .slick-dots {
        display: none !important;
    }

    .gal.slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }
}

.gal-nav-hidden {
    display: none !important;
}





/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
    -webkit-backface-visibility: hidden;
    outline: none;
}

    .pswp * {
        box-sizing: border-box;
    }

    .pswp img {
        max-width: none;
    }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
    /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
    opacity: 0.001;
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
    display: block;
}

.pswp--zoom-allowed .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.pswp--dragging .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    transform-origin: left top;
    /* for open/close transition */
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
    background: #222;
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC;
}

    .pswp__error-msg a {
        color: #CCC;
        text-decoration: underline;
    }

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

    .slick-track:before, .slick-track:after {
        content: "";
        display: table;
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}



/*poup up*/
/* <button> css reset */
.pswp__button {
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    position: relative;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: 0.75;
    transition: opacity 0.1s ease-in-out, background-color 0.1s ease-in-out;
    box-shadow: none;
    color: #777;
    color: inherit;
}

    .pswp__button:focus, .pswp__button:hover {
        background: rgba(0, 0, 0, 0.08);
    }

    .pswp__button:active {
        background: rgba(0, 0, 0, 0.12);
    }

    .pswp__button:focus, .pswp__button:hover {
        opacity: 0.85 !important;
    }

    .pswp__button:active {
        outline: none;
        opacity: 1 !important;
    }

    .pswp__button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__button--close {
    font-family: inherit;
    font-size: 26px;
    padding-bottom: 7px;
    font-weight: 600;
    background: #c5c5c5;
    color: #fff !important;
    margin-left: 2rem;
}

    .pswp__button--close:focus, .pswp__button--close:hover, .pswp__button--close:active {
        background: #f44336;
    }

.pswp__button--fs {
    display: none;
}

.pswp--supports-fs .pswp__button--fs {
    display: block;
}

    .pswp--supports-fs .pswp__button--fs:before {
        content: "\f065";
        /* expand */
    }

.pswp--fs .pswp__button--fs:before {
    content: "\f066";
    /* compress */
}

.pswp__button--zoom {
    display: none;
}

    .pswp__button--zoom:before {
        content: "\f067";
        /* plus */
    }

.pswp--zoom-allowed .pswp__button--zoom {
    display: block;
}

.pswp--zoomed-in .pswp__button--zoom:before {
    content: "\f068";
    /* minus */
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 60px;
    padding: 0;
}

.pswp__button--arrow--left {
    left: 0;
}

    .pswp__button--arrow--left:before {
        content: "\f104";
        /* angle-left */
    }

.pswp__button--arrow--right {
    right: 0;
}

    .pswp__button--arrow--right:before {
        content: "\f105";
        /* angle-right */
    }

/*

	2. Share modal/popup and links

 */
.pswp__counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
    position: relative;
    float: left;
    width: 80px;
    height: 40px;
    font-size: inherit;
    font-weight: 600;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.6);
    padding-left: 20px;
}

.pswp__zoom-controls {
    position: relative;
    float: left;
    height: 40px;
}

/*
	
	4. Caption

 */
.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 40px;
}

    .pswp__caption small {
        font-size: 11px;
        color: #BBB;
    }

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC;
}

.pswp__caption--empty {
    display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
    visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr;
}

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px;
}

.pswp__preloader--active {
    opacity: 1;
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1;
}

    .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
        animation: clockwise 500ms linear infinite;
    }

    .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
        animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
    }

.pswp--css_animation .pswp__preloader__icn {
    background: none;
    opacity: 0.75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
    /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right;
    }
}

@keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(-140deg);
    }

    100% {
        transform: rotate(0);
    }
}

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 100%;
}

.pswp__caption,
.pswp__top-bar {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
    background-color: rgba(255, 255, 255, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(255, 255, 255, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
    opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    /* Force paint & create composition layer for controls. */
    opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none;
}

.pswp__element--disabled {
    display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
    background: none;
}

.pswp__container.sliding {
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.slick-loading .slick-list {
    background: #fff url("/Themes/Flex/Content/images/loading.gif") center center no-repeat;
}

img.slick-loading {
    opacity: 0;
}

.gal-box .slick-arrow,
.gal-box .gal-arrow {
    font-size: 1.25rem;
}

    .gal-box .slick-arrow.slick-disabled,
    .gal-box .gal-arrow.gal-disabled {
        opacity: 0.2;
        background: transparent !important;
        border-color: transparent !important;
        outline: none !important;
        box-shadow: none !important;
        cursor: default;
    }

.gal-box .gal-nav .gal-arrow {
    line-height: 1;
    padding: 0;
    margin: 3px 0;
}

.gal .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

    .gal .slick-arrow.slick-prev {
        left: 0;
        right: auto;
    }

    .gal .slick-arrow.slick-next {
        left: auto;
        right: 0;
    }

.artlist-carousel .no-touchevents .slick-slider.slick-dotted {
    padding-left: 1rem;
    padding-right: 1rem;
}

.artlist-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 100;
    transition: opacity 0.2s linear;
    height: 6rem;
    line-height: 6rem;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.artlist-carousel .slick-slider:hover .slick-arrow {
    opacity: 1;
}

    .artlist-carousel .slick-slider:hover .slick-arrow.slick-disabled {
        opacity: 0.4;
        background: #fff;
        border-color: #ced4da;
    }

.artlist-carousel .slick-prev {
    left: 0;
    right: auto;
    border-radius: 0 0.3rem 0.3rem 0;
    border-left-width: 0;
    border-right-width: 1px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
}

.artlist-carousel .slick-next {
    right: 0;
    left: auto;
    border-radius: 0.3rem 0 0 0.3rem;
    border-right-width: 0;
    border-left-width: 1px;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.12);
}

[dir=rtl] .artlist-carousel .slick-prev {
    left: auto;
    right: 0;
    border-radius: 0.3rem 0 0 0.3rem;
    border-right-width: 0;
    border-left-width: 1px;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.12);
}

[dir=rtl] .artlist-carousel .slick-next {
    left: 0;
    right: auto;
    border-radius: 0 0.3rem 0.3rem 0;
    border-left-width: 0;
    border-right-width: 1px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
}

.artlist-carousel .slick-arrow.slick-disabled {
    color: #dee2e6 !important;
    cursor: default;
    box-shadow: none !important;
    border-color: #8d9ba9 !important;
}

.touchevents .slick-arrow {
    display: none !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px !important;
}

.slick-dots {
    position: absolute;
    bottom: -30px;
    display: block;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 0;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        cursor: pointer;
        padding: 0 6px;
        height: 10px;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            cursor: pointer;
            color: transparent;
            outline: 0 none;
            padding: 0;
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #dee2e6;
            border: 1px solid #b0bac3;
        }

        .slick-dots li.slick-active button {
            background: #b0bac3;
        }

        .slick-dots li button:hover,
        .slick-dots li button:focus {
            outline: none;
        }

            .slick-dots li button:hover:before,
            .slick-dots li button:focus:before {
                opacity: 1;
            }

@keyframes drift-fadeZoomIn {
    0% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drift-fadeZoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    15% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes drift-loader-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes drift-loader-before {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.2) translateX(6px);
    }

    25% {
        transform: scale(1.3) translateX(8px);
    }

    40% {
        transform: scale(1.2) translateX(6px);
    }

    50% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.8) translateX(6px);
    }

    75% {
        transform: scale(0.7) translateX(8px);
    }

    90% {
        transform: scale(0.8) translateX(6px);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes drift-loader-after {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.2) translateX(-6px);
    }

    25% {
        transform: scale(1.3) translateX(-8px);
    }

    40% {
        transform: scale(1.2) translateX(-6px);
    }

    50% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.8) translateX(-6px);
    }

    75% {
        transform: scale(0.7) translateX(-8px);
    }

    90% {
        transform: scale(0.8) translateX(-6px);
    }

    100% {
        transform: scale(1);
    }
}


/*col*/

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

/*shopping cart*/

.cart {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.cart-head {
    display: none;
}

.cart-row {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #dee2e6;
}

.cart-col {
    padding: 1rem;
    vertical-align: top;
}

.cart-col-main {
    width: 100%;
}

    .cart-col-main ~ .cart-col {
        white-space: nowrap;
        width: 33%;
        padding-top: 0;
    }

        .cart-col-main ~ .cart-col:before {
            display: block;
            content: attr(data-caption);
            font-size: 1rem;
            font-weight: 600;
            padding-bottom: 0.4rem;
        }

.cart-col-qty {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.cart-col-subtotal {
    text-align: right;
}

.cart-item-img {
    max-width: 70px;
    text-align: center;
}

@media (max-width: 375px) {
    .cart-item-img {
        flex-basis: auto;
        margin-bottom: 10px;
        max-width: initial;
    }

        .cart-item-img .img-fluid {
            max-height: 100px;
        }
}

.cart-item-link {
    font-weight: 600;
    color: inherit !important;
    font-size: 1rem;
    line-height: 1.2;
}

    .cart-item-link ~ * {
        margin-top: 0.5rem;
    }

.cart-item-sku {
    margin-top: 0;
}

.cart-item-attr {
    margin-top: 2px;
    margin-bottom: 2px;
}

    .cart-item-attr div:first-child {
        font-weight: 600;
    }

.cart-head .cart-row {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
}

.cart-head .cart-col {
    font-size: 1rem;
    font-weight: 600;
}

.cart-body .cart-col-subtotal .price {
    font-weight: 600;
}

.cart-editable .price {
    line-height: calc(2.5625rem + 2px);
}

.cart-row-child {
    font-size: 90%;
    background: #fbfbfb;
    border-top: none;
}

    .cart-row-child .cart-item-img {
        display: none;
    }

    .cart-row-child .cart-col-main ~ .cart-col {
        display: none;
    }

    .cart-row-child .cart-item-link {
        font-size: 0.875rem;
    }

@media (min-width: 768px) {
    .cart {
        display: table;
    }

    .cart-head {
        display: table-header-group;
    }

    .cart-body {
        display: table-row-group;
    }

    .cart-row {
        display: table-row;
    }

    .cart-col {
        display: table-cell;
    }

    .cart-col {
        border-top: 1px solid #dee2e6;
    }

    .cart-col-main ~ .cart-col {
        width: auto;
        padding-top: 1rem;
    }

        .cart-col-main ~ .cart-col:before {
            display: none;
        }

    .cart-head .cart-col {
        border-top: none;
        border-bottom: 1px solid #dee2e6;
    }

    .cart-row-child {
        /*.cart-col-main { 
            padding-left: 3rem; 
        }*/
    }

        .cart-row-child .cart-col {
            border-top: none;
        }

        .cart-row-child .cart-item-img {
            display: block;
        }

        .cart-row-child .cart-col-main ~ .cart-col {
            display: table-cell;
        }

    .cart-editable .cart-col-price {
        text-align: right;
    }

    .cart-editable .cart-col-qty {
        text-align: center;
        min-width: 100px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .cart-editable .cart-col-price:not(.cart-col-subtotal) {
        display: none;
    }
}

@media (min-width: 992px) {
    .cart-item-img {
        max-width: 100px;
    }

    .cart-editable .cart-col-qty {
        text-align: center;
        min-width: 120px;
    }
}

.cart-footer {
    background-color: #f7f7f9;
    padding: 1rem;
}

    .cart-footer .alert, .cart-footer .validation-summary-valid,
    .cart-footer .validation-summary-errors {
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

.cart-summary {
    width: 100%;
    line-height: 1.3;
}

    .cart-summary td {
        padding: 0.4rem 0;
        vertical-align: top;
    }

    .cart-summary .cart-summary-label {
        padding-right: 0.5rem;
    }

    .cart-summary .cart-summary-value {
        text-align: right;
        white-space: nowrap;
    }

    .cart-summary .cart-summary-pos {
        color: #285b2a;
        font-weight: 600;
    }

    .cart-summary .cart-summary-neg {
        color: #7f231c;
    }

    .cart-summary .cart-summary-total {
        font-size: 1rem;
        font-weight: 600;
    }

        .cart-summary .cart-summary-total td {
            padding-top: 0.75rem;
        }

    .cart-summary .cart-summary-giftcard br {
        display: none;
    }

.cart-checkout-attributes {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.order-summary-content .selected-checkout-attributes .attr-caption,
.order-details .checkout-attributes .attr-caption {
    font-weight: bold;
    padding-right: 10px;
}

    .order-summary-content .selected-checkout-attributes .attr-caption:after,
    .order-details .checkout-attributes .attr-caption:after {
        content: ': ';
    }

.order-summary-content .selected-checkout-attributes .attr-value,
.order-details .checkout-attributes .attr-value {
    text-align: left;
}

.table-order-products .productpicture,
.table-order-products .remove,
.table-order-products .addtocart {
    text-align: center;
}

.cart-action {
    position: relative;
}

    .cart-action .cart-action-title {
        position: relative;
        cursor: pointer;
        padding: 0.5rem 0;
        margin: 0;
    }

        .cart-action .cart-action-title:after {
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            line-height: 1;
            font-size: inherit;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(0);
            transition: transform 0.15s linear;
        }

        .cart-action .cart-action-title.collapsed:after {
            transform: translateY(-50%) rotate(180deg);
        }

    .cart-action .cart-action-body {
        padding-top: 0.5rem;
        padding-bottom: 1rem;
    }

        .cart-action .cart-action-body .form-group:last-child {
            margin-bottom: 0;
        }

    .cart-action:first-child .cart-action-title {
        padding-top: 0;
    }



.sm-gutters {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

    .sm-gutters > .col,
    .sm-gutters > [class*="col-"] {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

.xs-gutters {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}

    .xs-gutters > .col,
    .xs-gutters > [class*="col-"] {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }




.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    max-width: 100%;
    height: auto;
}



.custom-range {
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .custom-range::-webkit-slider-thumb {
        -webkit-appearance: none;
    }

    .custom-range::-moz-range-thumb {
        -moz-appearance: none;
    }

.validation-summary-valid > *:last-child,
.validation-summary-errors > *:last-child {
    margin-bottom: 0;
}

.validation-summary-valid {
    display: none;
}

.field-validation-error {
    display: block;
    color: #f44336;
    font-size: 10px;
    margin-top: 0.25rem;
    width: 100%;
}

.is-valid:focus,
.is-invalid:focus {
    box-shadow: none !important;
}

.required-text-input {
    display: none;
}