/* 禁止滚动时的样式 2025-5-6 */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.ngx-progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        z-index: 99999 !important;
        display: none;
        color: #00acc1;
        overflow: hidden
    }

    .ngx-progress-bar.foreground-closing,
    .ngx-progress-bar.loading-foreground {
        display: block
    }

    .ngx-progress-bar.foreground-closing {
        opacity: 0 !important;
        transition: opacity .5s ease-out .5s
    }

    .ngx-progress-bar.fast-closing {
        transition: opacity .3s ease-out .3s !important
    }

    .ngx-progress-bar:after,
    .ngx-progress-bar:before {
        background-color: currentColor;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0
    }

    .ngx-progress-bar-ltr:before {
        transform: translate3d(-100%, 0, 0)
    }

    .ngx-progress-bar-ltr:after {
        animation: progressBar-slide-ltr 12s ease-out 0s 1 normal;
        transform: translate3d(-5%, 0, 0)
    }

    .ngx-progress-bar-rtl:before {
        transform: translate3d(100%, 0, 0)
    }

    .ngx-progress-bar-rtl:after {
        animation: progressBar-slide-rtl 12s ease-out 0s 1 normal;
        transform: translate3d(5%, 0, 0)
    }

    .foreground-closing.ngx-progress-bar-ltr:before {
        animation: progressBar-slide-complete-ltr 1s ease-out 0s 1;
        transform: translateZ(0)
    }

    .fast-closing.ngx-progress-bar-ltr:before {
        animation: progressBar-slide-complete-ltr .6s ease-out 0s 1 !important
    }

    .foreground-closing.ngx-progress-bar-rtl:before {
        animation: progressBar-slide-complete-rtl 1s ease-out 0s 1;
        transform: translateZ(0)
    }

    .fast-closing.ngx-progress-bar-rtl:before {
        animation: progressBar-slide-complete-rtl .6s ease-out 0s 1 !important
    }

    @keyframes progressBar-slide-ltr {
        0% {
            transform: translate3d(-100%, 0, 0)
        }

        to {
            transform: translate3d(-5%, 0, 0)
        }
    }

    @keyframes progressBar-slide-rtl {
        0% {
            transform: translate3d(100%, 0, 0)
        }

        to {
            transform: translate3d(5%, 0, 0)
        }
    }

    @keyframes progressBar-slide-complete-ltr {
        0% {
            transform: translate3d(-75%, 0, 0)
        }

        50% {
            transform: translateZ(0)
        }
    }

    @keyframes progressBar-slide-complete-rtl {
        0% {
            transform: translate3d(75%, 0, 0)
        }

        50% {
            transform: translateZ(0)
        }
    }

    .ngx-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99998 !important;
        background-color: rgba(40, 40, 40, .8);
        cursor: progress;
        display: none
    }

    .ngx-overlay.foreground-closing,
    .ngx-overlay.loading-foreground {
        display: block
    }

    .ngx-overlay.foreground-closing {
        opacity: 0 !important;
        transition: opacity .5s ease-out .5s
    }

    .ngx-overlay.fast-closing {
        transition: opacity .3s ease-out .3s !important
    }

    .ngx-overlay>.ngx-foreground-spinner {
        position: fixed;
        width: 60px;
        height: 60px;
        margin: 0;
        color: #00acc1
    }

    .ngx-overlay>.ngx-loading-logo {
        position: fixed;
        margin: 0;
        width: 120px;
        height: 120px
    }

    .ngx-overlay>.ngx-loading-text {
        position: fixed;
        margin: 0;
        font-family: sans-serif;
        font-weight: 400;
        font-size: 1.2em;
        color: #fff
    }

    .ngx-background-spinner {
        position: fixed;
        z-index: 99997 !important;
        width: 60px;
        height: 60px;
        margin: 0;
        color: #00acc1;
        opacity: .6;
        display: none
    }

    .ngx-background-spinner.background-closing,
    .ngx-background-spinner.loading-background {
        display: block
    }

    .ngx-background-spinner.background-closing {
        opacity: 0 !important;
        transition: opacity .7s ease-out
    }

    .ngx-background-spinner.fast-closing {
        transition: opacity .4s ease-out !important
    }

    .ngx-position-absolute,
    .ngx-position-absolute>.ngx-foreground-spinner,
    .ngx-position-absolute>.ngx-loading-logo,
    .ngx-position-absolute>.ngx-loading-text {
        position: absolute !important
    }

    .ngx-position-absolute.ngx-progress-bar {
        z-index: 99996 !important
    }

    .ngx-position-absolute.ngx-overlay {
        z-index: 99995 !important
    }

    .ngx-position-absolute.ngx-background-spinner,
    .ngx-position-absolute .sk-square-jelly-box>div:first-child {
        z-index: 99994 !important
    }

    .top-left {
        top: 30px;
        left: 30px
    }

    .top-center {
        top: 30px;
        left: 50%;
        transform: translateX(-50%)
    }

    .top-right {
        top: 30px;
        right: 30px
    }

    .center-left {
        top: 50%;
        left: 30px;
        transform: translateY(-50%)
    }

    .center-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .center-right {
        top: 50%;
        right: 30px;
        transform: translateY(-50%)
    }

    .bottom-left {
        bottom: 30px;
        left: 30px
    }

    .bottom-center {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%)
    }

    .bottom-right {
        bottom: 30px;
        right: 30px
    }

    .sk-ball-scale-multiple,
    .sk-ball-scale-multiple>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-ball-scale-multiple {
        width: 100%;
        height: 100%;
        font-size: 0
    }

    .sk-ball-scale-multiple>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        opacity: 0;
        animation: ball-scale-multiple 1s linear 0s infinite
    }

    .sk-ball-scale-multiple>div:nth-child(2) {
        animation-delay: .2s
    }

    .sk-ball-scale-multiple>div:nth-child(3) {
        animation-delay: .4s
    }

    @keyframes ball-scale-multiple {
        0% {
            opacity: 0;
            transform: scale(0)
        }

        5% {
            opacity: .75
        }

        to {
            opacity: 0;
            transform: scale(1)
        }
    }

    .sk-ball-spin,
    .sk-ball-spin>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-ball-spin {
        width: 100%;
        height: 100%;
        font-size: 0
    }

    .sk-ball-spin>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 25%;
        height: 25%;
        margin-top: -12.5%;
        margin-left: -12.5%;
        border-radius: 100%;
        animation: ball-spin-clockwise 1s ease-in-out infinite
    }

    .sk-ball-spin>div:first-child {
        top: 5%;
        left: 50%;
        animation-delay: -1.125s
    }

    .sk-ball-spin>div:nth-child(2) {
        top: 18.1801948466%;
        left: 81.8198051534%;
        animation-delay: -1.25s
    }

    .sk-ball-spin>div:nth-child(3) {
        top: 50%;
        left: 95%;
        animation-delay: -1.375s
    }

    .sk-ball-spin>div:nth-child(4) {
        top: 81.8198051534%;
        left: 81.8198051534%;
        animation-delay: -1.5s
    }

    .sk-ball-spin>div:nth-child(5) {
        top: 94.9999999966%;
        left: 50.0000000005%;
        animation-delay: -1.625s
    }

    .sk-ball-spin>div:nth-child(6) {
        top: 81.8198046966%;
        left: 18.1801949248%;
        animation-delay: -1.75s
    }

    .sk-ball-spin>div:nth-child(7) {
        top: 49.9999750815%;
        left: 5.0000051215%;
        animation-delay: -1.875s
    }

    .sk-ball-spin>div:nth-child(8) {
        top: 18.179464974%;
        left: 18.1803700518%;
        animation-delay: -2s
    }

    @keyframes ball-spin {

        0%,
        to {
            opacity: 1;
            transform: scale(1)
        }

        20% {
            opacity: 1
        }

        80% {
            opacity: 0;
            transform: scale(0)
        }
    }

    .sk-ball-spin-clockwise,
    .sk-ball-spin-clockwise>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-ball-spin-clockwise {
        width: 100%;
        height: 100%;
        font-size: 0
    }

    .sk-ball-spin-clockwise>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 25%;
        height: 25%;
        margin-top: -12.5%;
        margin-left: -12.5%;
        border-radius: 100%;
        animation: ball-spin-clockwise 1s ease-in-out infinite
    }

    .sk-ball-spin-clockwise>div:first-child {
        top: 5%;
        left: 50%;
        animation-delay: -.875s
    }

    .sk-ball-spin-clockwise>div:nth-child(2) {
        top: 18.1801948466%;
        left: 81.8198051534%;
        animation-delay: -.75s
    }

    .sk-ball-spin-clockwise>div:nth-child(3) {
        top: 50%;
        left: 95%;
        animation-delay: -.625s
    }

    .sk-ball-spin-clockwise>div:nth-child(4) {
        top: 81.8198051534%;
        left: 81.8198051534%;
        animation-delay: -.5s
    }

    .sk-ball-spin-clockwise>div:nth-child(5) {
        top: 94.9999999966%;
        left: 50.0000000005%;
        animation-delay: -.375s
    }

    .sk-ball-spin-clockwise>div:nth-child(6) {
        top: 81.8198046966%;
        left: 18.1801949248%;
        animation-delay: -.25s
    }

    .sk-ball-spin-clockwise>div:nth-child(7) {
        top: 49.9999750815%;
        left: 5.0000051215%;
        animation-delay: -.125s
    }

    .sk-ball-spin-clockwise>div:nth-child(8) {
        top: 18.179464974%;
        left: 18.1803700518%;
        animation-delay: 0s
    }

    @keyframes ball-spin-clockwise {

        0%,
        to {
            opacity: 1;
            transform: scale(1)
        }

        20% {
            opacity: 1
        }

        80% {
            opacity: 0;
            transform: scale(0)
        }
    }

    .sk-ball-spin-clockwise-fade-rotating,
    .sk-ball-spin-clockwise-fade-rotating>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-ball-spin-clockwise-fade-rotating {
        font-size: 0;
        width: 100%;
        height: 100%;
        animation: ball-spin-clockwise-fade-rotating-rotate 6s linear infinite
    }

    .sk-ball-spin-clockwise-fade-rotating>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 25%;
        height: 25%;
        margin-top: -12.5%;
        margin-left: -12.5%;
        border-radius: 100%;
        animation: ball-spin-clockwise-fade-rotating 1s linear infinite
    }

    .sk-ball-spin-clockwise-fade-rotating>div:first-child {
        top: 5%;
        left: 50%;
        animation-delay: -.875s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(2) {
        top: 18.1801948466%;
        left: 81.8198051534%;
        animation-delay: -.75s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(3) {
        top: 50%;
        left: 95%;
        animation-delay: -.625s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(4) {
        top: 81.8198051534%;
        left: 81.8198051534%;
        animation-delay: -.5s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(5) {
        top: 94.9999999966%;
        left: 50.0000000005%;
        animation-delay: -.375s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(6) {
        top: 81.8198046966%;
        left: 18.1801949248%;
        animation-delay: -.25s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(7) {
        top: 49.9999750815%;
        left: 5.0000051215%;
        animation-delay: -.125s
    }

    .sk-ball-spin-clockwise-fade-rotating>div:nth-child(8) {
        top: 18.179464974%;
        left: 18.1803700518%;
        animation-delay: 0s
    }

    @keyframes ball-spin-clockwise-fade-rotating-rotate {
        to {
            transform: rotate(-1turn)
        }
    }

    @keyframes ball-spin-clockwise-fade-rotating {
        50% {
            opacity: .25;
            transform: scale(.5)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    .sk-ball-spin-fade-rotating,
    .sk-ball-spin-fade-rotating>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-ball-spin-fade-rotating {
        width: 100%;
        height: 100%;
        font-size: 0;
        animation: ball-spin-fade-rotate 6s linear infinite
    }

    .sk-ball-spin-fade-rotating>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 25%;
        height: 25%;
        margin-top: -12.5%;
        margin-left: -12.5%;
        border-radius: 100%;
        animation: ball-spin-fade 1s linear infinite
    }

    .sk-ball-spin-fade-rotating>div:first-child {
        top: 5%;
        left: 50%;
        animation-delay: -1.125s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(2) {
        top: 18.1801948466%;
        left: 81.8198051534%;
        animation-delay: -1.25s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(3) {
        top: 50%;
        left: 95%;
        animation-delay: -1.375s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(4) {
        top: 81.8198051534%;
        left: 81.8198051534%;
        animation-delay: -1.5s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(5) {
        top: 94.9999999966%;
        left: 50.0000000005%;
        animation-delay: -1.625s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(6) {
        top: 81.8198046966%;
        left: 18.1801949248%;
        animation-delay: -1.75s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(7) {
        top: 49.9999750815%;
        left: 5.0000051215%;
        animation-delay: -1.875s
    }

    .sk-ball-spin-fade-rotating>div:nth-child(8) {
        top: 18.179464974%;
        left: 18.1803700518%;
        animation-delay: -2s
    }

    @keyframes ball-spin-fade-rotate {
        to {
            transform: rotate(1turn)
        }
    }

    @keyframes ball-spin-fade {

        0%,
        to {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: .25;
            transform: scale(.5)
        }
    }

    .sk-chasing-dots {
        margin: auto;
        width: 100%;
        height: 100%;
        position: absolute;
        text-align: center;
        animation: sk-chasingDots-rotate 2s linear infinite
    }

    .sk-chasing-dots>div {
        width: 60%;
        height: 60%;
        display: inline-block;
        position: absolute;
        top: 0;
        background-color: currentColor;
        border-radius: 100%;
        animation: sk-chasingDots-bounce 2s ease-in-out infinite
    }

    .sk-chasing-dots>div:nth-child(2) {
        top: auto;
        bottom: 0;
        animation-delay: -1s
    }

    @keyframes sk-chasingDots-rotate {
        to {
            transform: rotate(1turn)
        }
    }

    @keyframes sk-chasingDots-bounce {

        0%,
        to {
            transform: scale(0)
        }

        50% {
            transform: scale(1)
        }
    }

    .sk-circle {
        margin: auto;
        width: 100%;
        height: 100%;
        position: relative
    }

    .sk-circle>div {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }

    .sk-circle>div:before {
        content: "";
        display: block;
        margin: 0 auto;
        width: 15%;
        height: 15%;
        background-color: currentColor;
        border-radius: 100%;
        animation: sk-circle-bounceDelay 1.2s ease-in-out infinite both
    }

    .sk-circle>div:nth-child(2) {
        transform: rotate(30deg)
    }

    .sk-circle>div:nth-child(3) {
        transform: rotate(60deg)
    }

    .sk-circle>div:nth-child(4) {
        transform: rotate(90deg)
    }

    .sk-circle>div:nth-child(5) {
        transform: rotate(120deg)
    }

    .sk-circle>div:nth-child(6) {
        transform: rotate(150deg)
    }

    .sk-circle>div:nth-child(7) {
        transform: rotate(180deg)
    }

    .sk-circle>div:nth-child(8) {
        transform: rotate(210deg)
    }

    .sk-circle>div:nth-child(9) {
        transform: rotate(240deg)
    }

    .sk-circle>div:nth-child(10) {
        transform: rotate(270deg)
    }

    .sk-circle>div:nth-child(11) {
        transform: rotate(300deg)
    }

    .sk-circle>div:nth-child(12) {
        transform: rotate(330deg)
    }

    .sk-circle>div:nth-child(2):before {
        animation-delay: -1.1s
    }

    .sk-circle>div:nth-child(3):before {
        animation-delay: -1s
    }

    .sk-circle>div:nth-child(4):before {
        animation-delay: -.9s
    }

    .sk-circle>div:nth-child(5):before {
        animation-delay: -.8s
    }

    .sk-circle>div:nth-child(6):before {
        animation-delay: -.7s
    }

    .sk-circle>div:nth-child(7):before {
        animation-delay: -.6s
    }

    .sk-circle>div:nth-child(8):before {
        animation-delay: -.5s
    }

    .sk-circle>div:nth-child(9):before {
        animation-delay: -.4s
    }

    .sk-circle>div:nth-child(10):before {
        animation-delay: -.3s
    }

    .sk-circle>div:nth-child(11):before {
        animation-delay: -.2s
    }

    .sk-circle>div:nth-child(12):before {
        animation-delay: -.1s
    }

    @keyframes sk-circle-bounceDelay {

        0%,
        80%,
        to {
            transform: scale(0)
        }

        40% {
            transform: scale(1)
        }
    }

    .sk-cube-grid {
        width: 100%;
        height: 100%;
        margin: auto
    }

    .sk-cube-grid>div {
        width: 33%;
        height: 33%;
        background-color: currentColor;
        float: left;
        animation: sk-cubeGrid-scaleDelay 1.3s ease-in-out infinite
    }

    .sk-cube-grid>div:first-child {
        animation-delay: .2s
    }

    .sk-cube-grid>div:nth-child(2) {
        animation-delay: .3s
    }

    .sk-cube-grid>div:nth-child(3) {
        animation-delay: .4s
    }

    .sk-cube-grid>div:nth-child(4) {
        animation-delay: .1s
    }

    .sk-cube-grid>div:nth-child(5) {
        animation-delay: .2s
    }

    .sk-cube-grid>div:nth-child(6) {
        animation-delay: .3s
    }

    .sk-cube-grid>div:nth-child(7) {
        animation-delay: 0s
    }

    .sk-cube-grid>div:nth-child(8) {
        animation-delay: .1s
    }

    .sk-cube-grid>div:nth-child(9) {
        animation-delay: .2s
    }

    @keyframes sk-cubeGrid-scaleDelay {

        0%,
        70%,
        to {
            transform: scaleX(1)
        }

        35% {
            transform: scale3D(0, 0, 1)
        }
    }

    .sk-double-bounce {
        width: 100%;
        height: 100%;
        position: relative;
        margin: auto
    }

    .sk-double-bounce>div {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: currentColor;
        opacity: .6;
        position: absolute;
        top: 0;
        left: 0;
        animation: sk-doubleBounce-bounce 2s ease-in-out infinite
    }

    .sk-double-bounce>div:nth-child(2) {
        animation-delay: -1s
    }

    @keyframes sk-doubleBounce-bounce {

        0%,
        to {
            transform: scale(0)
        }

        50% {
            transform: scale(1)
        }
    }

    .sk-fading-circle {
        margin: auto;
        width: 100%;
        height: 100%;
        position: relative
    }

    .sk-fading-circle>div {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }

    .sk-fading-circle>div:before {
        content: "";
        display: block;
        margin: 0 auto;
        width: 15%;
        height: 15%;
        background-color: currentColor;
        border-radius: 100%;
        animation: sk-fadingCircle-FadeDelay 1.2s ease-in-out infinite both
    }

    .sk-fading-circle>div:nth-child(2) {
        transform: rotate(30deg)
    }

    .sk-fading-circle>div:nth-child(3) {
        transform: rotate(60deg)
    }

    .sk-fading-circle>div:nth-child(4) {
        transform: rotate(90deg)
    }

    .sk-fading-circle>div:nth-child(5) {
        transform: rotate(120deg)
    }

    .sk-fading-circle>div:nth-child(6) {
        transform: rotate(150deg)
    }

    .sk-fading-circle>div:nth-child(7) {
        transform: rotate(180deg)
    }

    .sk-fading-circle>div:nth-child(8) {
        transform: rotate(210deg)
    }

    .sk-fading-circle>div:nth-child(9) {
        transform: rotate(240deg)
    }

    .sk-fading-circle>div:nth-child(10) {
        transform: rotate(270deg)
    }

    .sk-fading-circle>div:nth-child(11) {
        transform: rotate(300deg)
    }

    .sk-fading-circle>div:nth-child(12) {
        transform: rotate(330deg)
    }

    .sk-fading-circle>div:nth-child(2):before {
        animation-delay: -1.1s
    }

    .sk-fading-circle>div:nth-child(3):before {
        animation-delay: -1s
    }

    .sk-fading-circle>div:nth-child(4):before {
        animation-delay: -.9s
    }

    .sk-fading-circle>div:nth-child(5):before {
        animation-delay: -.8s
    }

    .sk-fading-circle>div:nth-child(6):before {
        animation-delay: -.7s
    }

    .sk-fading-circle>div:nth-child(7):before {
        animation-delay: -.6s
    }

    .sk-fading-circle>div:nth-child(8):before {
        animation-delay: -.5s
    }

    .sk-fading-circle>div:nth-child(9):before {
        animation-delay: -.4s
    }

    .sk-fading-circle>div:nth-child(10):before {
        animation-delay: -.3s
    }

    .sk-fading-circle>div:nth-child(11):before {
        animation-delay: -.2s
    }

    .sk-fading-circle>div:nth-child(12):before {
        animation-delay: -.1s
    }

    @keyframes sk-fadingCircle-FadeDelay {

        0%,
        39%,
        to {
            opacity: 0
        }

        40% {
            opacity: 1
        }
    }

    .sk-folding-cube {
        margin: auto;
        width: 100%;
        height: 100%;
        position: relative;
        transform: rotate(45deg)
    }

    .sk-folding-cube>div {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        transform: scale(1.1)
    }

    .sk-folding-cube>div:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: currentColor;
        animation: sk-foldingCube-angle 2.4s linear infinite both;
        transform-origin: 100% 100%
    }

    .sk-folding-cube>div:nth-child(2) {
        transform: scale(1.1) rotate(90deg)
    }

    .sk-folding-cube>div:nth-child(3) {
        transform: scale(1.1) rotate(270deg)
    }

    .sk-folding-cube>div:nth-child(4) {
        transform: scale(1.1) rotate(180deg)
    }

    .sk-folding-cube>div:nth-child(2):before {
        animation-delay: .3s
    }

    .sk-folding-cube>div:nth-child(3):before {
        animation-delay: .9s
    }

    .sk-folding-cube>div:nth-child(4):before {
        animation-delay: .6s
    }

    @keyframes sk-foldingCube-angle {

        0%,
        10% {
            transform: perspective(140px) rotateX(-180deg);
            opacity: 0
        }

        25%,
        75% {
            transform: perspective(140px) rotateX(0deg);
            opacity: 1
        }

        90%,
        to {
            transform: perspective(140px) rotateY(180deg);
            opacity: 0
        }
    }

    .sk-pulse {
        width: 100%;
        height: 100%;
        margin: auto
    }

    .sk-pulse>div {
        width: 100%;
        height: 100%;
        background-color: currentColor;
        border-radius: 100%;
        animation: sk-pulse-scaleOut 1s ease-in-out infinite
    }

    @keyframes sk-pulse-scaleOut {
        0% {
            transform: scale(0)
        }

        to {
            transform: scale(1);
            opacity: 0
        }
    }

    .sk-rectangle-bounce {
        margin: auto;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 0
    }

    .sk-rectangle-bounce>div {
        background-color: currentColor;
        height: 100%;
        width: 10%;
        margin: 0 5%;
        display: inline-block;
        animation: sk-rectangleBounce-stretchDelay 1.2s ease-in-out infinite
    }

    .sk-rectangle-bounce>div:nth-child(2) {
        animation-delay: -1.1s
    }

    .sk-rectangle-bounce>div:nth-child(3) {
        animation-delay: -1s
    }

    .sk-rectangle-bounce>div:nth-child(4) {
        animation-delay: -.9s
    }

    .sk-rectangle-bounce>div:nth-child(5) {
        animation-delay: -.8s
    }

    @keyframes sk-rectangleBounce-stretchDelay {

        0%,
        40%,
        to {
            transform: scaleY(.4)
        }

        20% {
            transform: scaleY(1)
        }
    }

    .sk-rectangle-bounce-party,
    .sk-rectangle-bounce-party>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-rectangle-bounce-party {
        margin: auto;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 0
    }

    .sk-rectangle-bounce-party>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        width: 10%;
        height: 100%;
        margin: 0 5%;
        border-radius: 0;
        animation-name: rectangle-bounce-party;
        animation-iteration-count: infinite
    }

    .sk-rectangle-bounce-party>div:first-child {
        animation-duration: .43s;
        animation-delay: -.23s
    }

    .sk-rectangle-bounce-party>div:nth-child(2) {
        animation-duration: .62s;
        animation-delay: -.32s
    }

    .sk-rectangle-bounce-party>div:nth-child(3) {
        animation-duration: .43s;
        animation-delay: -.44s
    }

    .sk-rectangle-bounce-party>div:nth-child(4) {
        animation-duration: .8s;
        animation-delay: -.31s
    }

    .sk-rectangle-bounce-party>div:nth-child(5) {
        animation-duration: .74s;
        animation-delay: -.24s
    }

    @keyframes rectangle-bounce-party {
        0% {
            transform: scaleY(1)
        }

        50% {
            transform: scaleY(.4)
        }

        to {
            transform: scaleY(1)
        }
    }

    .sk-rectangle-bounce-pulse-out,
    .sk-rectangle-bounce-pulse-out>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-rectangle-bounce-pulse-out {
        margin: auto;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 0
    }

    .sk-rectangle-bounce-pulse-out>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        width: 10%;
        height: 100%;
        margin: 0 5%;
        border-radius: 0;
        animation: rectangle-bounce-pulse-out .9s cubic-bezier(.85, .25, .37, .85) infinite
    }

    .sk-rectangle-bounce-pulse-out>div:nth-child(3) {
        animation-delay: -.9s
    }

    .sk-rectangle-bounce-pulse-out>div:nth-child(2),
    .sk-rectangle-bounce-pulse-out>div:nth-child(4) {
        animation-delay: -.7s
    }

    .sk-rectangle-bounce-pulse-out>div:first-child,
    .sk-rectangle-bounce-pulse-out>div:nth-child(5) {
        animation-delay: -.5s
    }

    @keyframes rectangle-bounce-pulse-out {
        0% {
            transform: scaley(1)
        }

        50% {
            transform: scaley(.4)
        }

        to {
            transform: scaley(1)
        }
    }

    .sk-rectangle-bounce-pulse-out-rapid,
    .sk-rectangle-bounce-pulse-out-rapid>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-rectangle-bounce-pulse-out-rapid {
        margin: auto;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 0
    }

    .sk-rectangle-bounce-pulse-out-rapid>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        width: 10%;
        height: 100%;
        margin: 0 5%;
        border-radius: 0;
        animation: rectangle-bounce-pulse-out-rapid .9s cubic-bezier(.11, .49, .38, .78) infinite
    }

    .sk-rectangle-bounce-pulse-out-rapid>div:nth-child(3) {
        animation-delay: -.9s
    }

    .sk-rectangle-bounce-pulse-out-rapid>div:nth-child(2),
    .sk-rectangle-bounce-pulse-out-rapid>div:nth-child(4) {
        animation-delay: -.65s
    }

    .sk-rectangle-bounce-pulse-out-rapid>div:first-child,
    .sk-rectangle-bounce-pulse-out-rapid>div:nth-child(5) {
        animation-delay: -.4s
    }

    @keyframes rectangle-bounce-pulse-out-rapid {
        0% {
            transform: scaley(1)
        }

        80% {
            transform: scaley(.4)
        }

        90% {
            transform: scaley(1)
        }
    }

    .sk-rotating-plane {
        width: 100%;
        height: 100%;
        text-align: center;
        margin: auto
    }

    .sk-rotating-plane>div {
        width: 100%;
        height: 100%;
        background-color: currentColor;
        animation: sk-rotatePlane 1.2s ease-in-out infinite
    }

    @keyframes sk-rotatePlane {
        0% {
            transform: perspective(120px) rotateX(0deg) rotateY(0deg)
        }

        50% {
            transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
        }

        to {
            transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
        }
    }

    .sk-square-jelly-box,
    .sk-square-jelly-box>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-square-jelly-box {
        width: 100%;
        height: 100%;
        font-size: 0
    }

    .sk-square-jelly-box>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid
    }

    .sk-square-jelly-box>div:first-child,
    .sk-square-jelly-box>div:nth-child(2) {
        position: absolute;
        left: 0;
        width: 100%
    }

    .sk-square-jelly-box>div:first-child {
        top: -25%;
        z-index: 99997;
        height: 100%;
        border-radius: 10%;
        animation: square-jelly-box-animate .6s linear -.1s infinite
    }

    .sk-square-jelly-box>div:nth-child(2) {
        bottom: -9%;
        height: 10%;
        background: #000;
        border-radius: 50%;
        opacity: .2;
        animation: square-jelly-box-shadow .6s linear -.1s infinite
    }

    @keyframes square-jelly-box-animate {
        17% {
            border-bottom-right-radius: 10%
        }

        25% {
            transform: translateY(25%) rotate(22.5deg)
        }

        50% {
            border-bottom-right-radius: 100%;
            transform: translateY(50%) scaleY(.9) rotate(45deg)
        }

        75% {
            transform: translateY(25%) rotate(67.5deg)
        }

        to {
            transform: translateY(0) rotate(90deg)
        }
    }

    @keyframes square-jelly-box-shadow {
        50% {
            transform: scaleX(1.25)
        }
    }

    .sk-square-loader,
    .sk-square-loader>div {
        position: relative;
        box-sizing: border-box
    }

    .sk-square-loader {
        font-size: 0;
        width: 100%;
        height: 100%
    }

    .sk-square-loader>div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid;
        width: 100%;
        height: 100%;
        background: transparent;
        border-width: 3px;
        border-radius: 0;
        animation: square-loader 2s ease infinite
    }

    .sk-square-loader>div:after {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        content: "";
        background-color: currentColor;
        animation: square-loader-inner 2s ease-in infinite
    }

    @keyframes square-loader {
        0% {
            transform: rotate(0deg)
        }

        25% {
            transform: rotate(180deg)
        }

        50% {
            transform: rotate(180deg)
        }

        75% {
            transform: rotate(1turn)
        }

        to {
            transform: rotate(1turn)
        }
    }

    @keyframes square-loader-inner {
        0% {
            height: 0
        }

        25% {
            height: 0
        }

        50% {
            height: 100%
        }

        75% {
            height: 100%
        }

        to {
            height: 0
        }
    }

    .sk-three-bounce {
        margin: auto;
        width: 100%;
        height: 100%;
        text-align: center
    }

    .sk-three-bounce>div {
        margin-top: 35%;
        width: 30%;
        height: 30%;
        background-color: currentColor;
        border-radius: 100%;
        display: inline-block;
        animation: sk-threeBounce-bounceDelay 1.4s ease-in-out infinite both
    }

    .bottom-center>.sk-three-bounce>div,
    .bottom-left>.sk-three-bounce>div,
    .bottom-right>.sk-three-bounce>div {
        margin-top: 70% !important
    }

    .top-center>.sk-three-bounce>div,
    .top-left>.sk-three-bounce>div,
    .top-right>.sk-three-bounce>div {
        margin-top: 0 !important
    }

    .sk-three-bounce>div:first-child {
        animation-delay: -.32s
    }

    .sk-three-bounce>div:nth-child(2) {
        animation-delay: -.16s
    }

    @keyframes sk-threeBounce-bounceDelay {

        0%,
        80%,
        to {
            transform: scale(0)
        }

        40% {
            transform: scale(1)
        }
    }

    .sk-three-strings,
    .sk-three-strings>div {
        width: 100%;
        height: 100%
    }

    .sk-three-strings>div {
        position: absolute;
        box-sizing: border-box;
        border-radius: 50%
    }

    .sk-three-strings>div:first-child {
        left: 0;
        top: 0;
        animation: sk-threeStrings-rotateOne 1s linear infinite;
        border-bottom: 3px solid
    }

    .sk-three-strings>div:nth-child(2) {
        right: 0;
        top: 0;
        animation: sk-threeStrings-rotateTwo 1s linear infinite;
        border-right: 3px solid
    }

    .sk-three-strings>div:nth-child(3) {
        right: 0;
        bottom: 0;
        animation: sk-threeStrings-rotateThree 1s linear infinite;
        border-top: 3px solid
    }

    @keyframes sk-threeStrings-rotateOne {
        0% {
            transform: rotateX(35deg) rotateY(-45deg) rotate(0deg)
        }

        to {
            transform: rotateX(35deg) rotateY(-45deg) rotate(1turn)
        }
    }

    @keyframes sk-threeStrings-rotateTwo {
        0% {
            transform: rotateX(50deg) rotateY(10deg) rotate(0deg)
        }

        to {
            transform: rotateX(50deg) rotateY(10deg) rotate(1turn)
        }
    }

    @keyframes sk-threeStrings-rotateThree {
        0% {
            transform: rotateX(35deg) rotateY(55deg) rotate(0deg)
        }

        to {
            transform: rotateX(35deg) rotateY(55deg) rotate(1turn)
        }
    }

    .sk-wandering-cubes {
        margin: auto;
        width: 100%;
        height: 100%;
        position: relative;
        text-align: center
    }

    .sk-wandering-cubes>div {
        background-color: currentColor;
        width: 25%;
        height: 25%;
        position: absolute;
        top: 0;
        left: 0;
        animation: sk-wanderingCubes-cubeMove 1.8s ease-in-out infinite
    }

    .sk-wandering-cubes>div:nth-child(2) {
        animation-delay: -.9s
    }

    @keyframes sk-wanderingCubes-cubeMove {
        25% {
            transform: translateX(290%) rotate(-90deg) scale(.5)
        }

        50% {
            transform: translateX(290%) translateY(290%) rotate(-179deg)
        }

        50.1% {
            transform: translateX(290%) translateY(290%) rotate(-180deg)
        }

        75% {
            transform: translateX(0) translateY(290%) rotate(-270deg) scale(.5)
        }

        to {
            transform: rotate(-1turn)
        }
    }

.custom-toast[_ngcontent-sc247] {
        min-width: 500px;
        border-radius: 10px;
        position: fixed;
        top: 32px;
        right: 0;
        transition: transform .6s ease-out, opacity .6s ease-out;
        z-index: 1050;
        transform: translateX(100%);
        display: flex;
        flex-direction: column
    }

    .custom-toast.show[_ngcontent-sc247] {
        transform: translateX(0);
        right: 32px
    }

    .custom-toast.hide[_ngcontent-sc247] {
        transform: translateX(100%);
        right: 0
    }

    @media (max-width:500px) {
        .custom-toast[_ngcontent-sc247] {
            top: 16px;
            right: 0;
            min-width: unset;
            min-width: calc(100% - 32px);
            margin-left: 0;
            margin-right: 0
        }

        .custom-toast.show[_ngcontent-sc247] {
            right: 16px;
            left: 16px
        }

        .custom-toast.hide[_ngcontent-sc247] {
            right: 0;
            left: 0;
            transform: translateX(100%)
        }
    }

    .toast-img[_ngcontent-sc247] {
        width: 100%;
        height: auto;
        border: 1px solid #b7bfc7
    }

    .text-section[_ngcontent-sc247] {
        padding-left: 16px;
        text-align: left;
        align-self: flex-start;
        flex-grow: 1
    }

    .view-tab[_ngcontent-sc247] {
        background-color: #1876d1;
        color: #fff;
        text-align: center;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        height: auto;
        flex-grow: 1
    }

    .toast-message[_ngcontent-sc247] {
        color: #1876d1
    }

    .toast-part-description[_ngcontent-sc247] {
        color: #414245;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 1.2
    }

    .toast-body {
        padding: 0 !important
    }

    .custom-toast[_ngcontent-sc247] .row[_ngcontent-sc247] {
        margin-left: 0;
        margin-right: 0;
        display: -webkit-box
    }

    .custom-toast[_ngcontent-sc247] .col-3[_ngcontent-sc247] {
        padding-right: 0;
        display: flex;
        align-items: center
    }

    .custom-toast[_ngcontent-sc247] .col-3[_ngcontent-sc247],
    .custom-toast[_ngcontent-sc247] .col-7.text-section[_ngcontent-sc247] {
        padding-top: 16px;
        padding-bottom: 16px
    }

    .custom-toast[_ngcontent-sc247] .col-2.view-tab[_ngcontent-sc247] {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1
    }


@media (min-width:768px) {
        .top-nav {
            z-index: 99;
            background: repeating-linear-gradient(90deg, #fff 0, #fff 20vw, #0060a8 0, #0060a8 100vw)
        }

        .top-nav .full-block {
            width: 100%;
            height: 54px
        }

        .top-nav .full-block.right {
            padding-top: 10px
        }

        .top-nav .v-center {
            margin: 0;
            top: 50%;
            transform: translateY(-50%);
            position: absolute;
            right: 15px
        }

        .top-nav .main-logo {
            height: 55px;
            width: auto;
            position: absolute;
            z-index: 1;
            right: -95px
        }

        .top-nav ul {
            list-style: none;
            margin: 0
        }

        .top-nav ul li {
            color: #fff;
            font-size: 14px;
            padding: 15px 0;
            display: inline-block
        }

        .top-nav ul li a {
            color: #fff
        }

        .top-nav ul li .dropdown-toggle:after {
            display: none
        }

        .top-nav ul li .with-icon {
            opacity: .8
        }

        .top-nav ul li .with-icon:hover {
            opacity: 1
        }

        .top-nav ul li .account-menu-container {
            position: relative;
            margin: 0 5px
        }

        .top-nav ul li .account-menu-container .btn {
            padding: 0;
            color: #fff;
            opacity: .8
        }

        .top-nav ul li .account-menu-container .btn:hover {
            opacity: 1
        }

        .top-nav ul li .account-menu-container .btn .material-icons {
            font-size: 27px !important;
            margin: 0 0 0 10px
        }

        .top-nav ul li .account-menu-container .account-menu {
            position: absolute;
            top: 42px;
            background: #fff;
            width: 160px;
            z-index: 99999999999;
            right: 0;
            color: #3a4355;
            font-size: 14px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s .2s, opacity .2s linear
        }

        .top-nav ul li .account-menu-container .account-menu.open {
            border: 1px solid #002984;
            box-shadow: 0 0 4px 0 #707070;
            visibility: visible;
            opacity: 1;
            transition: opacity .2s linear
        }

        .top-nav ul li .account-menu-container .account-menu.open:before {
            position: absolute;
            content: "";
            width: 15px;
            height: 15px;
            top: -7px;
            background-color: #fff;
            transform: rotateY(0deg) rotate(45deg);
            left: 44%
        }

        .top-nav ul li .account-menu-container .account-menu.open .menu-group {
            opacity: 1;
            transition: opacity .25s ease-in
        }

        .top-nav ul li .account-menu-container .account-menu .menu-group {
            opacity: 0;
            transition: opacity .25s ease-in;
            border-top: 1px solid #e9ecef;
            padding: .5rem 0
        }

        .top-nav ul li .account-menu-container .account-menu .menu-group .menu-item {
            padding: .5rem 1.25rem
        }

        .top-nav ul li .account-menu-container .account-menu .menu-group .menu-item.label {
            color: #0060a8;
            cursor: auto;
            font-weight: 400;
            text-transform: uppercase
        }

        .top-nav ul li .account-menu-container .account-menu .menu-group .menu-item.link {
            cursor: pointer
        }

        .top-nav ul li .account-menu-container .account-menu .menu-group .menu-item.link:hover {
            background-color: #efefef
        }

        .top-nav ul li .language-dropdown {
            margin-left: 10px
        }

        .top-nav ul li .language-dropdown .language {
            opacity: .8;
            padding: 3px 3px 0;
            line-height: 1;
            text-transform: capitalize
        }

        .top-nav ul li .language-dropdown .language:hover {
            cursor: pointer;
            opacity: 1
        }

        .top-nav ul li .language-dropdown .language.nohover {
            opacity: .8;
            cursor: default
        }

        .mid-nav {
            background-color: #fff;
            height: 90px
        }

        .mid-nav a {
            font-size: 14px;
            color: #1876d1
        }

        .mid-nav a:hover {
            color: #fff;
            text-decoration: none
        }

        .mid-nav a.cart-button {
            font-size: 16px
        }

        .mid-nav a.btn.btn-link:hover {
            background-color: rgba(0, 0, 0, .05)
        }

        .mid-nav .with-icon .material-icons {
            margin-right: 0;
            font-size: 27px
        }

        .mid-nav .cart-icon {
            color: #1876d1
        }

        .mid-nav .cart-count {
            color: #414245;
            margin-top: -7px;
            min-width: 10px
        }

        .mid-nav .dropdown-toggle:after {
            display: none
        }

        .mid-nav .nav {
            height: 100%
        }

        .mid-nav .nav ul {
            list-style: none;
            display: table;
            width: 100%;
            height: 100%;
            margin-bottom: 0;
            padding: 0
        }

        .mid-nav .nav ul li {
            display: inline-block;
            transition: .6s;
            position: relative;
            margin: 0;
            padding: 8px 10px;
            cursor: pointer
        }

        .mid-nav .nav ul li.first-menu {
            margin-left: 0;
            text-align: left
        }

        .mid-nav .nav ul li.menu-link:before {
            position: absolute;
            content: "";
            width: 15px;
            height: 15px;
            bottom: -6px;
            margin-left: -7px;
            background-color: #dedede;
            opacity: 0;
            transform: rotateY(0deg) rotate(45deg);
            left: 0
        }

        .mid-nav .nav ul li a {
            font-size: 14px;
            color: #0060a8;
            display: block;
            cursor: pointer;
            text-align: center
        }

        .mid-nav .nav ul li.menu-link.open:before {
            opacity: 1;
            left: 50%
        }

        .mid-nav li.menu-link:last-child .mega-menu-container {
            left: 0 !important
        }

        .mid-nav .mega-menu-container {
            position: absolute;
            z-index: 99;
            left: calc(50% - 25px) !important;
            top: 34px;
            display: inline-flex;
            background-color: #fff;
            transition: max-height .4s ease-in;
            max-height: 0;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            box-shadow: 0 3px 6px #00000029;
            overflow: hidden
        }

        .mid-nav .mega-menu-container.open {
            max-height: 800px;
            transition: max-height .4s ease-in;
            border-top: 1px solid rgba(58, 67, 86, .5)
        }

        .mid-nav .mega-menu-container.open .menu-space {
            opacity: 1;
            transition: opacity .25s ease-in
        }

        .mid-nav .mega-menu-container .menu-space {
            padding: 25px 0;
            opacity: 0;
            transition: opacity .25s ease-in
        }

        .mid-nav .mega-menu-container .menu-space .menu-item {
            padding: 5px 30px;
            position: relative;
            transition: all .2s ease-in;
            color: #414245 !important
        }

        .mid-nav .mega-menu-container .menu-space .menu-item:hover.hover-highlight {
            color: #1876d1 !important
        }

        .mid-nav .mega-menu-container .menu-space .menu-item.active,
        .mid-nav .mega-menu-container .menu-space .menu-item:hover {
            color: #414245;
            background-color: #0000000d;
            transition: all .2s ease-in
        }

        .mid-nav .mega-menu-container .menu-space .menu-item.active.no-hover,
        .mid-nav .mega-menu-container .menu-space .menu-item:hover.no-hover {
            background-color: transparent
        }

        .mid-nav .mega-menu-container .menu-space .menu-item.active .links:before,
        .mid-nav .mega-menu-container .menu-space .menu-item:hover .links:before {
            width: 100% !important
        }

        .mid-nav .mega-menu-container .menu-space .menu-item .item {
            width: -moz-max-content;
            width: max-content;
            font-size: 13px
        }

        .mid-nav .mega-menu-container .menu-space .menu-item .item .links {
            position: relative;
            font-weight: 400;
            color: #1876d1;
            cursor: pointer
        }

        .mid-nav .mega-menu-container .menu-space .menu-item .item .links:before {
            position: absolute;
            content: "";
            height: 1px;
            width: 0;
            bottom: 0;
            background-image: linear-gradient(90deg, #1876d1, rgba(21, 97, 170, 0));
            transition: .5s ease
        }

        .mid-nav .mega-menu-container .menu-space .menu-item .menu-arrow {
            position: absolute;
            top: 0;
            right: 0;
            color: #1876d1;
            padding: 5px
        }

        .mid-nav .cart-menu-container {
            position: relative;
            margin: 0 0 0 32px
        }

        .mid-nav .cart-menu-container.open:before {
            opacity: 1;
            left: 50%
        }

        .mid-nav .cart-menu-container:before {
            position: absolute;
            content: "";
            width: 10px;
            height: 12px;
            bottom: -6px;
            margin-left: -5px;
            background-color: #fff;
            opacity: 0;
            transform: rotateY(0deg) rotate(45deg);
            left: 0
        }

        .mid-nav .cart-menu-container .btn {
            color: #0060a8
        }

        .mid-nav .cart-menu-container .btn .material-icons {
            font-size: 27px !important;
            margin: 0 0 0 10px
        }

        .mid-nav .cart-menu-container .btn .material-icons.quick-order-icon {
            margin: 0
        }

        .mid-nav .cart-menu-container .btn.cart-button {
            font-size: 16px
        }

        .mid-nav .cart-menu-container .cart-menu {
            position: absolute;
            top: 40px;
            background: #fff;
            width: 450px;
            right: -100px;
            color: #3a4355;
            font-size: 14px;
            border-radius: 10px;
            max-height: 0;
            transition: max-height .4s ease-in;
            overflow: hidden
        }

        .mid-nav .cart-menu-container .cart-menu.open {
            border: 1px solid #002984;
            box-shadow: 0 0 4px 0 #707070;
            max-height: 600px;
            transition: max-height .4s ease-in;
            z-index: 99999999999
        }

        .mid-nav .cart-menu-container .cart-menu.open .menu-group {
            opacity: 1;
            transition: opacity .25s ease-in
        }

        .mid-nav .cart-menu-container .cart-menu .menu-group {
            opacity: 0;
            transition: opacity .25s ease-in;
            border-top: 1px solid #e9ecef;
            line-height: 1.2;
            padding-top: 12px;
            margin: 0 20px 12px
        }

        .mid-nav .cart-menu-container .cart-menu .cart-detail-container {
            max-height: 450px;
            overflow-y: auto
        }

        .shadow {
            box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .2) !important
        }

        .backdrop {
            position: fixed;
            left: 0;
            right: 0;
            top: 144px;
            bottom: 0;
            z-index: 18;
            background: #002948 !important;
            opacity: 40% !important;
            -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
            transition: all .2s ease-out;
            height: 100%
        }

        .backdrop.top-menu {
            top: 54px
        }

        .selectedmenu {
            background-color: #70707042 !important
        }
    }

    @media screen and (min-width:768px) and (max-width:768px) {
        .top-nav .main-logo {
            right: 130px
        }
    }

    @media (max-width:768px) {
        #navbar {
            background-color: #036dab;
            height: 120px;
            transition: height .3s;
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000
        }

        .navbar-sticky {
            position: fixed !important
        }

        .custom-border-color {
            border-left: 1px solid #fff
        }

        .custom-li {
            height: 20px;
            align-items: center
        }

        .center-content {
            display: flex;
            justify-content: flex-end;
            align-items: center
        }

        .d-flex {
            display: flex
        }

        .flex-nowrap {
            flex-wrap: nowrap
        }
    }

    .mobile-nav-size {
        height: 60px !important
    }

    .full-page-menu {
        position: fixed;
        top: 60px;
        left: 0 !important;
        width: 100%;
        overflow: auto;
        height: calc(100% - 60px);
        z-index: 99999999;
        padding: 0;
        margin: 0;
        background-color: #486d9d
    }

    .full-page-menu .menu-item-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: #000;
        background-color: #f2f5f9;
        padding: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid hsla(0, 0%, 44%, .3);
        overflow: hidden
    }

    .full-page-menu .menu-item-mobile .material-icons {
        color: #707071;
        opacity: .5
    }

    .full-page-menu .menu-item-mobile a {
        margin-left: 35px;
        text-align: start;
        white-space: pre-wrap
    }

    .full-page-menu .menu-item-mobile a,
    .menu-item-account {
        color: #000;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .menu-item-account {
        background-color: #f2f5f9;
        padding: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid hsla(0, 0%, 44%, .3)
    }

    .menu-item-account .material-icons {
        color: #707071;
        opacity: .5
    }

    .mobile-nav {
        background-color: #0060a8 !important;
        height: 120px;
        transition: height .3s;
        position: fixed;
        top: 0;
        z-index: -1;
        overflow: hidden
    }

    .mobile-nav .mobile-nav.shrink {
        height: 60px
    }

    .mobile-nav .sticky-header {
        position: sticky;
        top: 0;
        z-index: 100
    }

    .mobile-nav #logo {
        font-size: 24px;
        transition: font-size .3s, width .3s;
        white-space: nowrap
    }

    .mobile-nav #icons-container {
        transition: margin-top .3s;
        margin-top: 10px
    }

    .mobile-nav #icons-container.shrink {
        margin-top: 10px
    }

    .mobile-nav #globe-icon {
        transition: opacity .3s
    }

    .mobile-nav #globe-icon.shrink {
        opacity: 0;
        visibility: hidden
    }

    .mobile-nav .mobile-nav.mobile-nav.shrink .search-container {
        margin-top: 0
    }

    .mobile-nav .scrolled {
        position: relative;
        margin-right: 15px
    }

    .mobile-nav .flex-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 15px
    }

    .mobile-nav .flex-container,
    .mobile-nav .flex-item {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .mobile-nav .flex-item {
        flex: 1;
        height: 50px;
        margin-left: 15px
    }

    .mobile-nav .flex-item a {
        color: #fff
    }

    .mobile-nav .flex-item-logo {
        flex: 10;
        margin-left: 15px;
        margin-top: 10px;
        margin-bottom: 14
    }

    .mobile-nav .flex-item-logo img {
        width: 150px
    }

    .mobile-nav .flex-item-logo-icon {
        flex: 1
    }

    .mobile-nav .flex-item-logo-icon img {
        height: 25pt;
        width: 25pt
    }

    .mobile-nav .flex-item-scrolled-search {
        flex: 15;
        margin-left: 8px
    }

    .mobile-nav .search-container .form-control .flex-item-scrolled-search {
        height: none !important
    }

    .mobile-nav .flex-item-full {
        flex-basis: 100%;
        height: 50px;
        text-align: center;
        line-height: 50px;
        margin: 14px 15px 12px
    }

    .mobile-nav .vertical-line {
        border-left: 1px solid #fff;
        height: 20px;
        margin-top: auto;
        margin-bottom: auto
    }

    .mobile-nav .flex-item-vertical-line {
        margin-right: 14px
    }

    .mobile-nav .flex-item-account-icon {
        margin-left: 15px
    }

    .mobile-nav .order-1 {
        order: 1
    }

    .mobile-nav .order-2 {
        order: 2
    }

    .mobile-nav .order-3 {
        order: 3
    }

    .mobile-nav .material-icons-size {
        margin-left: 14px;
        margin-right: 15px
    }

    .mobile-nav .flex {
        margin-top: 14px;
        margin-left: 15px
    }

    .mobile-nav .flex a {
        color: #fff
    }

    .mobile-nav .flex-line {
        margin-left: 14px
    }

    .mobile-nav .menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1000;
        display: flex;
        flex-direction: column
    }

    .mobile-nav .menu-header {
        display: flex;
        justify-content: flex-start;
        background-color: #009fdb;
        color: #fff;
        text-align: start;
        flex-direction: column
    }

    .mobile-nav .menu-header button {
        background: none;
        border: none;
        color: #fff;
        font-size: 1rem
    }

    .mobile-nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        flex: 1;
        overflow-y: auto
    }

    .mobile-nav li {
        padding: 1rem;
        border-bottom: 1px solid #ccc;
        cursor: pointer
    }

    .mobile-nav .burger-menu {
        justify-content: flex-end;
        margin-left: auto
    }

    .mobile-nav .menu-sub-level-heading {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-right: 10px !important;
        color: #fff !important
    }

    .mobile-nav .menu-header-toplevel {
        margin-left: 45px
    }

    .mobile-nav .TopLevel {
        display: flex;
        justify-content: flex-start;
        margin-left: 15px
    }

    .mobile-nav .TopLevel i.material-icons {
        margin-right: 10px;
        margin-top: 10px
    }

    .mobile-nav .mobiletitle {
        background-color: #f5f5f7 !important;
        width: 100%;
        box-sizing: border-box;
        color: #009fdb;
        padding-left: 45px;
        border-bottom: 2px solid #009fdb
    }

    .mobile-nav .account-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f5f5f7;
        z-index: 1050;
        overflow: auto;
        display: flex;
        flex-direction: column
    }

    .mobile-nav .account-menu-container .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem 1rem;
        background-color: #0360a8;
        color: #fff
    }

    .mobile-nav .account-menu-container .title {
        font-size: 1rem;
        border-bottom: none
    }

    .mobile-nav .account-menu-container .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer
    }

    .mobile-nav .account-menu-container .item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid hsla(0, 0%, 44%, .3);
        cursor: pointer;
        font-size: 16px;
        color: #333
    }

    .mobile-nav .account-menu-container .item-row span {
        font-size: 16px;
        color: #333
    }

    .mobile-nav .account-menu-container .item-row .quick-order-row .material-icons {
        color: #888
    }

    .mobile-nav .account-menu-container .menutitle {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        align-items: center;
        border-bottom: 3px solid #009fdb;
        font-size: 16px;
        cursor: pointer;
        color: #009fdb
    }

    .menu-arrow {
        color: #acabae !important;
        font-size: 16px;
        visibility: hidden
    }

    .menu-item.has-sub-menu .menu-arrow {
        visibility: visible
    }

    .menu-item:hover .menu-arrow {
        color: #007bff !important
    }

    .ml-32 {
        margin-left: 32px !important
    }

    .header-search {
        width: auto
    }

@media (min-width:360px) and (max-width:768px) {
        #navbar {
            background-color: #036dab;
            height: 120px;
            transition: .3s ease-in-out;
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000 !important;
            box-sizing: border-box !important
        }

        .iphone {
            background-color: #0360a8 !important;
            padding-top: env(safe-area-inset-top)
        }

        .mobile-size {
            padding: 12px 15px !important
        }

        .navbar-sticky {
            position: fixed !important
        }

        .custom-border-color {
            border-left: 1px solid #fff
        }

        .custom-li {
            height: 20px;
            align-items: center
        }

        .center-content {
            display: flex;
            justify-content: flex-end;
            align-items: center
        }

        .d-flex {
            display: flex
        }

        .flex-nowrap {
            flex-wrap: nowrap
        }
    }

    .mobile-nav-size {
        height: 53px !important;
        padding: 12px 15px !important;
        position: fixed !important
    }

    .mobile-nav-size .material-icons {
        font-size: 38px !important;
        transition: .3s ease-in-out
    }

    .material-icons {
        transition: .3s ease-in-out
    }

    .material-icons.not-authenticated {
        opacity: .5
    }

    span.cart-count-not-auth {
        opacity: .5;
        vertical-align: top;
        line-height: 1
    }

    span.cart-count-auth {
        opacity: 1;
        vertical-align: top
    }

    .w-63 {
        width: 63%
    }

    .mobile-full-page-menu {
        position: fixed;
        top: 69px;
        right: -100%;
        width: 100%;
        overflow: auto;
        height: calc(100% - 53px);
        z-index: 99999999;
        padding: 0;
        margin: 0;
        background-color: #486d9d;
        transition: .3s ease-in-out
    }

    .mobile-full-page-menu.open {
        right: 0 !important
    }

    .mobile-full-page-menu .menu-item-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: #000;
        background-color: #f5f5f7;
        padding: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid hsla(0, 0%, 44%, .3);
        overflow: hidden
    }

    .mobile-full-page-menu .menu-item-mobile .material-icons {
        color: #707071;
        opacity: .5;
        margin-right: 15px
    }

    .mobile-full-page-menu .menu-item-mobile a {
        margin-left: 35px;
        color: #000;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: start;
        white-space: normal
    }

    .mobile-full-page-menu a:active {
        background-color: #c4d0e2;
        transition: background .6s;
        background-size: 100%
    }

    .mobile-full-page-menu ul li {
        margin-bottom: 0 !important;
        line-height: 35px !important
    }

    .menu-item-mobile a {
        text-decoration: none
    }

    .menu-item-mobile a:active .link-text,
    .menu-item-mobile a:focus .link-text,
    .menu-item-mobile a:hover .link-text {
        text-decoration: underline
    }

    .menu-item-account {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: #000;
        background-color: #f2f5f9;
        padding: 10px 10px 10px 20px;
        box-sizing: border-box;
        border-bottom: 1px solid hsla(0, 0%, 44%, .3)
    }

    .menu-item-account .arrow-right-icon {
        color: #707071;
        opacity: .5
    }

    .mobile-nav {
        background-color: #0060a8 !important;
        height: 120px;
        transition: .6s ease-in-out;
        width: 100% !important;
        top: 0;
        z-index: -1 !important;
        overflow: hidden;
        padding: 12px 15px !important
    }

    .mobile-nav .mobile-nav.shrink {
        height: 60px
    }

    .mobile-nav .sticky-header {
        position: sticky !important;
        top: 0;
        z-index: 100
    }

    .mobile-nav #logo {
        font-size: 24px;
        transition: font-size .3s, width .3s;
        white-space: nowrap
    }

    .mobile-nav #icons-container {
        transition: margin-top .3s;
        margin-top: 10px
    }

    .mobile-nav #icons-container.shrink {
        margin-top: 10px
    }

    .mobile-nav #globe-icon {
        transition: opacity .3s
    }

    .mobile-nav #globe-icon.shrink {
        opacity: 0;
        visibility: hidden
    }

    .mobile-nav .mobile-nav.mobile-nav.shrink .search-container {
        margin-top: 0
    }

    .mobile-nav .scrolled {
        position: relative;
        margin-right: 15px
    }

    .mobile-nav .search-container .form-control {
        background-color: #036dab !important;
        color: #fff !important;
        height: 38px !important
    }

    .mobile-nav .search-container .form-control:focus {
        background-color: #fff !important;
        color: #000 !important
    }

    .mobile-nav .search-container .form-control:focus~span i.search {
        color: #036dab !important;
        font-size: 35px !important;
        margin-top: 0 !important
    }

    .mobile-nav .search-pop-container {
        position: fixed !important;
        width: 90% !important;
        top: auto !important;
        left: 5% !important;
        right: 5% !important;
        transition: height .6s ease-out
    }

    .mobile-nav .search-pop-container:focus {
        height: 100px
    }

    .mobile-nav .pop-body {
        padding: 0 !important
    }

    .mobile-nav .pop-body .list-group-item {
        text-align: left;
        padding: 0;
        margin: 0;
        line-height: 35px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .mobile-nav .search-container .input-group-addon .material-icons-outlined {
        color: #fff !important;
        margin-top: 4px !important;
        font-size: 26px !important
    }

    .mobile-nav .search-container .input-group-addon .close {
        color: #000 !important;
        font-size: 35px !important;
        margin-right: 15px !important;
        margin-top: 0 !important
    }

    .mobile-nav .flex-container {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: -15px !important
    }

    .mobile-nav .flex-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        margin-right: 10px
    }

    .mobile-nav .flex-item a {
        color: #fff
    }

    .mobile-nav .flex-item-logo {
        flex: 10;
        margin-left: 6px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .mobile-nav .flex-item-logo img {
        width: 150px
    }

    .mobile-nav .flex-item-logo-icon {
        flex: 1
    }

    .mobile-nav .flex-item-logo-icon img {
        height: 35px;
        width: 50px;
        padding-left: 15px
    }

    .mobile-nav .flex-item-scrolled-search {
        flex: 15;
        margin-left: 8px
    }

    .mobile-nav .search-container .form-control .flex-item-scrolled-search {
        height: none !important
    }

    .mobile-nav .flex-item-full {
        flex-basis: 100%;
        height: 50px;
        text-align: center;
        line-height: 50px;
        margin: 14px 15px 12px
    }

    .mobile-nav .vertical-line {
        border-left: 1px solid #fff;
        height: 20px;
        margin-top: auto;
        margin-bottom: auto
    }

    .mobile-nav .flex-item-vertical-line {
        margin-right: 14px
    }

    .mobile-nav .flex-item-account-icon {
        margin-left: 15px
    }

    .mobile-nav .order-1 {
        order: 1
    }

    .mobile-nav .order-2 {
        order: 2
    }

    .mobile-nav .order-3 {
        order: 3
    }

    .mobile-nav .material-icons-size {
        margin-left: 14px;
        margin-right: 15px
    }

    .mobile-nav .flex {
        margin-top: 14px;
        margin-left: 10px;
        font-size: 10px
    }

    .mobile-nav .flex a {
        width: 100%;
        color: #fff
    }

    .mobile-nav .flex-line {
        margin-left: 14px;
        margin-top: 10px
    }

    .mobile-nav .menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1000;
        display: flex;
        flex-direction: column
    }

    .mobile-nav .menu-header {
        display: flow;
        justify-content: flex-start;
        background-color: #009fdb;
        color: #fff;
        text-align: start;
        flex-direction: column
    }

    .mobile-nav .menu-header button {
        background: none;
        border: none;
        color: #fff;
        font-size: 1rem
    }

    .mobile-nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        flex: 1;
        overflow-y: auto
    }

    .mobile-nav li {
        padding: 1rem;
        border-bottom: 1px solid #ccc;
        cursor: pointer
    }

    .mobile-nav .burger-menu {
        justify-content: flex-end;
        margin-right: 15px
    }

    .mobile-nav .menu-sub-level-heading {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-right: 10px !important;
        color: #fff !important
    }

    .mobile-nav .menu-header-toplevel {
        margin-left: 45px
    }

    .mobile-nav .TopLevel {
        display: flex;
        justify-content: flex-start;
        margin-left: 15px
    }

    .mobile-nav .TopLevel i.material-icons {
        margin-right: 10px;
        margin-top: 10px
    }

    .mobile-nav .mobiletitle {
        background-color: #f5f5f7 !important;
        width: 100%;
        box-sizing: border-box;
        color: #009fdb;
        padding-left: 45px;
        border-bottom: 2px solid #009fdb
    }

    .mobile-nav .account-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f5f5f7;
        z-index: 99999999;
        overflow: auto;
        display: flex;
        flex-direction: column
    }

    .mobile-nav .account-menu-container .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem 1rem;
        background-color: #0360a8;
        color: #fff
    }

    .mobile-nav .account-menu-container .title {
        font-size: 1rem;
        border-bottom: none;
        padding-top: 20px;
        padding-bottom: 16px
    }

    .mobile-nav .account-menu-container .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0
    }

    .mobile-nav .account-menu-container .close-btn .material-icons {
        font-size: 45px !important;
        padding-top: 8px !important
    }

    .mobile-nav .account-menu-container .item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid hsla(0, 0%, 44%, .3);
        cursor: pointer;
        font-size: 16px;
        color: #333
    }

    .mobile-nav .account-menu-container .item-row span {
        font-size: 16px;
        color: #333
    }

    .mobile-nav .account-menu-container .item-row .quick-order-row .material-icons {
        color: #888
    }

    .mobile-nav .account-menu-container .menutitle {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        align-items: center;
        border-bottom: 3px solid #009fdb;
        font-size: 16px;
        cursor: pointer;
        color: #009fdb;
        font-weight: 500 !important
    }

    #nav-icon1 {
        width: 25px;
        height: 24px;
        position: relative;
        cursor: pointer
    }

    #nav-icon1,
    #nav-icon1 span {
        transform: rotate(0deg);
        transition: .6s ease-in-out
    }

    #nav-icon1 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0
    }

    #nav-icon1 span:first-child {
        top: 0
    }

    #nav-icon1 span:nth-child(2),
    #nav-icon1 span:nth-child(3) {
        top: 9px
    }

    #nav-icon1 span:nth-child(4) {
        top: 18px
    }

    #nav-icon1.open span:first-child {
        top: 18px;
        width: 0;
        left: 50%
    }

    #nav-icon1.open span:nth-child(2) {
        transform: rotate(45deg);
        height: 4px;
        top: 9.5px;
        width: 32px
    }

    #nav-icon1.open span:nth-child(3) {
        transform: rotate(-45deg);
        height: 4px;
        top: 9.5px;
        width: 32px
    }

    #nav-icon1.open span:nth-child(4) {
        top: 10px;
        width: 0;
        left: 50%
    }

.search-container.input-group .input-group-addon {
        position: absolute;
        right: 10px;
        top: 4px;
        line-height: 38px;
        color: #1876d1
    }

    .search-container .input-group-addon .material-icons-outlined {
        font-size: 30px;
        color: #0060a8;
        margin-top: 0
    }

    .search-container .form-control {
        height: 40px;
        font-size: 16px;
        padding: 0 30px;
        border: 1px solid #0060a8;
        box-shadow: none;
        background: #f2f5f9
    }

    .search-container .form-control:hover {
        background: #fff;
        border: 1px solid #0060a8;
        transition: box-shadow .2s ease-in;
        box-shadow: 0 3px 6px #00000029
    }

    .search-container .search-pop-container {
        position: absolute;
        width: 100%;
        border-radius: 20px;
        background: #fff;
        box-shadow: none;
        overflow: hidden;
        z-index: 100000000;
        top: 0;
        padding: 0 15px
    }

    .search-container .search-pop-container .pop-header {
        background-color: #fff
    }

    .search-container .search-pop-container .pop-header .search-bg-color {
        background-color: #fff !important;
        color: #000 !important
    }

    .search-container .search-pop-container .pop-header .close-icon-color {
        color: #0060a8 !important
    }

    .search-container .search-pop-container .pop-header .form-control {
        box-shadow: none;
        background: #fff;
        border: none;
        border-radius: 0;
        padding-top: 8px;
        resize: none
    }

    .search-container .search-pop-container .pop-header .form-control:hover {
        border-color: #fff;
        background: #fff
    }

    .search-container .search-pop-container .pop-header .input-group-addon {
        left: 12px;
        top: 12px
    }

    .search-container .search-pop-container .pop-header .input-group-addon.right {
        right: 40px !important;
        left: auto !important;
        top: 7px !important
    }

    .search-container .search-pop-container .pop-header .input-group-addon.right .material-icons-outlined {
        font-size: 25px
    }

    .search-container .search-pop-container .pop-header .input-group-addon.right .material-icons-outlined:hover {
        font-size: 26px;
        font-weight: 600
    }

    .search-container .search-pop-container .pop-header .input-group-addon.left {
        right: 10px !important;
        left: auto !important;
        top: 4px !important
    }

    .search-container .search-pop-container .pop-header .input-group-addon.left .material-icons-outlined {
        font-size: 30px
    }

    .search-container .search-pop-container .pop-header .input-group-addon.left .material-icons-outlined:hover {
        font-size: 31px;
        font-weight: 600
    }

    .search-container .search-pop-container .pop-body {
        font-size: 14px
    }

    .search-container .search-pop-container .pop-body label {
        margin-bottom: .15rem !important
    }

    .search-container .search-pop-container .pop-body .list-group {
        border-top: 1px solid rgba(0, 0, 0, .125)
    }

    .search-container .search-pop-container .pop-body .list-group .list-group-item {
        padding: .5rem 1rem;
        border: none;
        overflow-wrap: break-word;
        color: #707070
    }

    .search-container .search-pop-container .pop-body .list-group .list-group-item:hover {
        background-color: #0000000d;
        cursor: pointer
    }

    .search-container .search {
        border: none !important
    }

    input::-moz-placeholder {
        color: #414245;
        opacity: .5
    }

    input::placeholder {
        color: #414245;
        opacity: .5
    }

    @media (min-width:360px) and (max-width:768px) {
        #close-icon-mobile {
            font-size: 32px !important;
            margin-top: 2px !important
        }
    }

    .search-input-hidden {
        text-indent: -9999px;
        margin-left: 4px
    }

    @media (max-width:768px) {
        .search-container.input-group .form-control {
            border: 1px solid #fff;
            background: transparent;
            margin-right: 12px;
            box-shadow: none
        }
    }

.fg-img-container {
        display: flex;
        justify-content: center
    }

    .fg-img-container .fg-img {
        margin: auto
    }

    .carousel-content {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .carousel-caption .headline {
        /*font-size: clamp(2rem, 5vw, 4.5rem);*/
        font-size: clamp(2rem, 5vw, 3.0rem);
        line-height: 1.6;
        /*letter-spacing: -.05em;*/
        color: #fff;
        /*width: clamp(370px, 80%, 766px);*/
        /*text-wrap: balance*/
    }

    .sub-headline {
        font-size: clamp(1rem, 2vw, 2.0rem);
        line-height: 1;
        color: #fff;
        text-wrap: balance
    }

    .min-h-400 {
        min-height: 400px
    }

    .object-fit-cover {
        -o-object-fit: cover;
        object-fit: cover
    }

    .carousel-item {
        cursor: pointer
    }

    @media (max-width:768px) {

        .min-h-400,
        .object-fit-cover {
            min-height: clamp(220px, 35vw, 250px) !important
        }

        .object-fit-cover {
            background-size: cover;
            height: 100% !important
        }

        .fg-img-container {
            background-size: contain;
            display: flex !important;
            justify-content: center;
            align-items: center
        }

        .carousel-caption .headline {
            width: auto !important;
            word-break: break-word;
            font-size: clamp(1.5rem, 5vw, 4.5rem)
        }

        .carousel-caption .btn-lg {
            border: 1px solid #ffffff80;
            font-size: 14px
        }
    }

.floatCard {
        background-color: #f2f5f9;
        text-align: center;
        padding: 1.25em 1em 0;
        height: 100%;
        border: 1px solid #f2f5f9;
        box-shadow: 0 3px 6px #00000029;
        transition: box-shadow .2s ease-in;
        border-radius: 10px
    }

    .floatCardWhite {
        background-color: #fff
    }

    a>div.floatCard {
        color: #3a4355;
        cursor: pointer
    }

    a:hover>div.floatCard p {
        color: #1876d1
    }

    a:hover>div.floatCard {
        border-color: #1876d1;
        text-decoration: none;
        box-shadow: 0 6px 12px #00000066
    }

    .floatCard p {
        line-height: 1.1
    }

    .floatCard img {
        width: 80%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px
    }

    .title-centerH2 {
        font-size: 1.2em;
        line-height: 1.1;
        font-weight: 500;
        text-align: center;
        display: inline-block;
        padding: 0 25px 8px;
        border-bottom: 1px solid transparent;
        -o-border-image: linear-gradient(90deg, rgba(58, 67, 85, 0), #3a4355, rgba(58, 67, 85, 0));
        border-image: linear-gradient(90deg, rgba(58, 67, 85, 0), #3a4355, rgba(58, 67, 85, 0));
        border-top: 0;
        border-image-slice: 1
    }

    @media (max-width:768px) {
        .mobile-scroll-view {
            overflow-x: auto;
            overflow-y: hidden;
            display: flex;
            flex-wrap: nowrap;
            padding-bottom: 24px;
            scroll-snap-type: x mandatory
        }

        .floatCard {
            border-radius: 10px !important
        }

        .mobile-scroll-view::-webkit-scrollbar {
            -webkit-appearance: none;
            border-radius: 100vw;
            height: 10px
        }

        .mobile-scroll-view::-webkit-scrollbar-thumb {
            background: #1876d1;
            border-radius: 10px;
            border-radius: 100vw
        }

        .dashboard-mobile-card {
            padding-right: 10px;
            padding-left: 10px;
            scroll-snap-align: start;
            flex: 0 0 100%
        }

        .mobile-scroll-view::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-left: 20px;
            margin-right: 5px
        }

        .mar-tb-28 {
            margin-top: 28px !important;
            margin-bottom: 30px !important
        }

        .mt-16 {
            margin-top: 16px !important;
            padding-left: 20px;
            padding-right: 0
        }

        .mt-16:last-child {
            padding-right: 20px
        }
    }

.foreground-container {
        position: absolute;
        top: 0;
        z-index: 1;
        width: 100%
    }

    .w-100>div>img {
        width: 100%;
        height: 100%;
        overflow: hidden
    }

.border-radius-card {
        border-radius: 15px;
        box-shadow: 0 3px 6px #00000029
    }

    .border-radius-card img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px
    }

    @media (max-width:768px) {
        .mobile-scroll-view {
            overflow-x: auto;
            overflow-y: hidden;
            display: flex;
            flex-wrap: nowrap;
            padding-bottom: 24px;
            scroll-snap-type: x mandatory
        }

        .mobile-scroll-view::-webkit-scrollbar {
            -webkit-appearance: none;
            border-radius: 100vw;
            height: 10px
        }

        .mobile-scroll-view::-webkit-scrollbar-thumb {
            background: #1876d1;
            border-radius: 10px;
            border-radius: 100vw
        }

        .mobile-scroll-view::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-left: 20px;
            margin-right: 5px
        }

        .dashboard-mobile-card {
            padding-right: 5px;
            scroll-snap-align: start;
            flex: 0 0 100%
        }

        .dashboard-mobile-card:first-child {
            padding-left: 20px
        }

        .mar-tp-40 {
            margin-top: 40px !important
        }

        .mt-16 {
            margin-top: 16px !important
        }

        .mt-16:last-child {
            padding-right: 20px
        }
    }

.array-item {
        padding: 20px 16px 16px;
        font-size: 16px;
        border: 1px solid #b0b4bb;
        box-shadow: 0 3px 6px #00000029;
        transition: .15s;
        text-decoration: none;
        border-radius: 10px
    }

    .array-item:hover {
        box-shadow: 0 6px 12px #00000066;
        color: #1876d1 !important;
        border-color: #1876d1 !important;
        transition: .15s;
        cursor: pointer
    }

    .array-item img {
        width: 80%;
        max-height: 6.25em;
        padding-bottom: .8em;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px
    }

    @media (max-width:768px) {
        .mobile-scroll-view {
            overflow-x: auto;
            overflow-y: hidden;
            display: flex;
            flex-wrap: nowrap;
            padding-bottom: 24px;
            scroll-snap-type: x mandatory;
            margin-top: 0 !important;
            margin-bottom: 0 !important
        }

        .border-radius-card {
            border-radius: 10px;
            padding-left: 20px;
            padding-right: 0;
            scroll-snap-align: start;
            flex: 0 0 100%
        }

        .mobile-scroll-view::-webkit-scrollbar {
            -webkit-appearance: none;
            border-radius: 100vw;
            height: 10px
        }

        .mobile-scroll-view::-webkit-scrollbar-thumb {
            background: #1876d1;
            border-radius: 10px;
            border-radius: 100vw
        }

        .mobile-scroll-view::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-left: 20px;
            margin-right: 5px
        }

        .mar-tp-40 {
            margin-top: 40px !important
        }

        .mt-16 {
            margin-top: 16px !important
        }

        .mt-14 {
            margin-top: 14px !important;
            margin-bottom: 0 !important
        }

        .mt-16:last-child {
            padding-right: 20px
        }
    }

.icon-font-lg {
        position: relative;
        top: .25em
    }

    .font-20 {
        font-size: 20px !important
    }

    .floatCard {
        background-color: #f2f5f9;
        text-align: center;
        padding: 1.25em 1em 0;
        height: 100%;
        border: 1px solid #f2f5f9;
        box-shadow: 0 3px 6px #00000029;
        transition: box-shadow .2s ease-in;
        border-radius: 10px
    }

    a>div.floatCard {
        color: #3a4355;
        cursor: pointer
    }

    a:hover>div.floatCard p {
        color: #1876d1
    }

    a:hover>div.floatCard {
        border-color: #1876d1;
        text-decoration: none;
        box-shadow: 0 6px 12px #00000066
    }

    .floatCard p {
        line-height: 1.1
    }

    .floatCard img {
        width: 80%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px
    }

    .webinarBlock {
        padding: 0;
        background-color: #fff;
        border: 1px solid #b0b4bb
    }

    .webinarBlock p {
        margin: 1rem
    }

    .webinarBlock img {
        width: 100%
    }

    @media (max-width:768px) {
        .mobile-scroll-view {
            overflow-x: auto;
            overflow-y: hidden;
            display: flex;
            flex-wrap: nowrap;
            scroll-snap-type: x mandatory
        }

        .mobile-scroll-view::-webkit-scrollbar {
            -webkit-appearance: none;
            border-radius: 100vw;
            height: 10px
        }

        .mobile-scroll-view::-webkit-scrollbar-thumb {
            background: #1876d1;
            border-radius: 10px;
            border-radius: 100vw
        }

        .mobile-scroll-view::-webkit-scrollbar-track {
            background: #f1f1f1;
            margin-left: 20px;
            margin-right: 5px
        }

        .border-radius-card {
            border-radius: 10px;
            padding-left: 20px;
            padding-right: 0;
            scroll-snap-align: start;
            flex: 0 0 100%
        }

        .mar-tp-40 {
            margin-top: 40px !important;
            margin-bottom: 40px !important
        }

        .mt-16 {
            margin-top: 16px !important
        }

        .mt-14 {
            margin-top: 14px !important;
            margin-bottom: 0 !important
        }

        .mt-16:last-child {
            padding-right: 20px
        }
    }

@media (min-width:993px) {
        .footer {
            position: absolute
        }

        .footer.chekout-footer {
            min-height: 0
        }

        .footer .main-footer .container {
            padding-top: 20px
        }

        .footer .social-media {
            justify-content: space-evenly;
            max-width: 375px
        }

        .footer .social-media a .social-icon {
            width: 36px
        }

        .footer .danaher-logo {
            position: absolute;
            bottom: 0;
            right: 15px
        }
    }

    .company-icon-section {
        display: flex;
        padding-bottom: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
        overflow: hidden
    }

    .company-icon-section .company-icon-container {
        display: flex;
        align-items: center;
        gap: 40px;
        margin: 0 auto;
        padding: 0 12px
    }

    .company-icon-section .company-logo {
        width: 105px;
        height: 78px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .sub-footer {
        height: auto;
        width: 100%;
        line-height: 1.4;
        left: 0;
        bottom: 0;
        color: #fff;
        font-size: 10px
    }

    .sub-footer a {
        color: #fff
    }

    .sub-footer .copy-right {
        color: #9da8d0
    }

    @media (min-width:768px) {
        .sub-footer .container {
            display: flex
        }

        .sub-footer-content {
            flex-direction: row;
            justify-content: space-between
        }

        .links {
            margin-right: 16px
        }

        .copy-right {
            margin-top: 0
        }
    }

    @media (max-width:992px) {
        .desktop-only {
            display: none
        }
    }

    .footer {
        min-height: 310px;
        width: 100%;
        left: 0;
        bottom: 0;
        background-color: #002948;
        color: #fff;
        font-size: 14px
    }

    .footer p {
        margin-bottom: 15px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2
    }

    .footer p.label {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600;
        color: #9da8d0
    }

    .footer p a {
        color: #fff
    }

    .footer .phx-text {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.2;
        color: hsla(0, 0%, 100%, .7)
    }

    .subfooter-data-links,
    .subfooter-data-links:after {
        position: relative;
        display: inline-block;
        vertical-align: middle
    }

    .subfooter-data-links:after {
        content: "|";
        right: 0;
        color: #fff;
        font-size: 1rem;
        line-height: 1;
        height: 100%;
        padding-left: .25rem;
        padding-right: .5rem
    }

    .subfooter-data-links:last-child:after {
        content: ""
    }

    .sub-footer {
        background-color: #070a15;
        padding-top: .25rem
    }

    .sub-footer .container {
        display: flex;
        flex-direction: column;
        flex-grow: 1
    }

    .sub-footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .links {
        flex: 1
    }

    .copy-right {
        flex: 0;
        text-align: right;
        white-space: nowrap
    }

    @media (max-width:768px) {
        .sub-footer-content {
            flex-direction: column;
            align-items: flex-start;
            padding-left: .5rem
        }

        .copy-right {
            text-align: left;
            margin-top: 8px
        }
    }

    .custom-divider {
        border-bottom: 1px solid #9da8d0;
        margin-top: 20px
    }

@media only screen and (min-device-width:320px) and (max-device-width:991px) {
        .footer {
            position: relative
        }

        .footer.chekout-footer {
            min-height: 0
        }

        .footer .phx-logo-footer {
            width: 175px
        }

        .footer .mob-footer {
            padding: 20px 30px 0;
            max-width: 768px;
            margin: 0 auto
        }

        .footer .box {
            padding: 20px 0
        }

        .footer .social-media {
            justify-content: space-evenly;
            padding: 0;
            margin-top: 30px;
            margin-bottom: -25px;
            max-width: 375px
        }

        .footer .social-media a .img-fluid {
            width: 45px
        }

        .footer .footer-accordion {
            background-color: #002948;
            color: #fff;
            border: none
        }

        .footer .mat-expansion-panel {
            display: inline
        }

        .footer .mat-expansion-panel-header {
            height: 40px;
            line-height: 40px;
            padding: 0 !important;
            background-color: #002948;
            border-bottom: 1px solid #9da8d0
        }

        .footer .mat-expansion-panel-header-title {
            color: #9da8d0;
            font-family: proxima-nova, sans-serif;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase
        }

        .footer .mat-expansion-panel:focus {
            background-color: #002948
        }

        .footer .mat-expansion-panel-body {
            padding: 0
        }

        .footer .mat-expansion-panel-body ul {
            padding-left: 0
        }

        .footer .footer-accordion mat-icon {
            font-size: 24px;
            color: #9da8d0;
            margin-top: 6px;
            transition: transform .3s ease-out
        }

        .footer .mat-expansion-panel-header.mat-expanded mat-icon {
            transform: rotate(180deg)
        }

        .footer .mat-expansion-panel-header mat-icon {
            transform: rotate(0deg)
        }

        .footer .mat-expansion-panel-header .mat-panel-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff
        }

        .footer mat-expansion-panel {
            background-color: transparent !important
        }

        .footer mat-expansion-panel-header.mat-expanded {
            background-color: transparent !important;
            border-bottom: none !important
        }

        .footer mat-expansion-panel .mat-expansion-panel-content,
        .footer mat-expansion-panel-header:not(.mat-expanded) {
            background-color: transparent !important
        }

        .footer .custom-expansion-panel {
            border: none
        }

        .footer .custom-expansion-panel.mat-expanded {
            border-bottom: 1px solid #9da8d0
        }

        .footer .custom-expansion-panel .mat-expansion-panel-content {
            border-bottom: 1px solid transparent
        }

        .footer .custom-expansion-panel.mat-expanded .mat-expansion-panel-content {
            border-bottom: 1px solid #9da8d0
        }

        .footer ul {
            list-style-type: none;
            padding: 0;
            margin: 0
        }

        .footer ul li {
            line-height: 1.4;
            padding-bottom: 10px
        }

        .footer ul li a {
            color: #fff;
            text-decoration: none
        }

        .footer ul li a:hover {
            text-decoration: underline
        }

        .footer .custom-divider {
            padding-top: 20px
        }

        .footer .be-ix-link-block {
            line-height: 1 !important
        }

        .sub-footer .container {
            display: flex;
            margin-top: 20px
        }

        .company-icon-section {
            padding-bottom: 0;
            margin-right: 0;
            margin-left: 0;
            overflow: hidden
        }

        .company-icon-section .company-icon-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0 40px;
            padding: 0;
            margin-left: 0;
            margin-right: 38px
        }

        .company-icon-section .company-logo {
            width: 90px;
            height: 64px;
            -o-object-fit: contain;
            object-fit: contain
        }

        .company-icon-section .company-icon-container>* {
            flex: 1 1 calc(33.33% - 40px)
        }

        .company-icon-section hr {
            width: 91.5%;
            background: #9da8d0;
            margin-bottom: 27px;
            margin-top: 2px
        }
    }

    @media (max-width:767px) {
        .sub-footer .container .py-1 .custom-link {
            padding-left: .5rem !important;
            padding-right: .5rem !important;
            border-right: 2px solid #fff !important
        }

        .sub-footer .container .py-1 .custom-link:first-child {
            padding-left: 0 !important
        }

        .sub-footer .container .py-1 .custom-link:last-child {
            border-right: none !important
        }

        .sub-footer-content {
            flex-direction: column;
            align-items: flex-start
        }

        .copy-right {
            text-align: left;
            padding-left: 5px
        }
    }

    @media (min-width:992px) {
        .mob-footer {
            display: none
        }
    }

    .sub-link-item:after {
        content: "|";
        position: absolute;
        right: 0;
        color: #fff;
        font-size: 1rem;
        line-height: 1;
        height: 100%;
        display: inline-block;
        vertical-align: middle
    }

    @media (min-width:768px) and (max-width:1024px) {
        .company-icon-section {
            padding-bottom: 0;
            overflow: hidden
        }

        .company-icon-section .company-icon-container {
            flex-wrap: wrap;
            gap: 0 40px
        }

        .company-icon-section .company-icon-container>* {
            flex: 1 1 calc(16.66% - 40px);
            max-width: 80px
        }

        .company-icon-section .company-logo {
            width: 80px;
            height: 74px
        }

        .sub-footer-content {
            flex-direction: row;
            justify-content: space-between
        }

        .copy-right {
            text-align: right;
            margin-top: 0;
            padding-left: 1rem
        }
    }

    .footer {
        min-height: 310px;
        width: 100%;
        left: 0;
        bottom: 0;
        background-color: #002948;
        color: #fff;
        font-size: 14px
    }

    .footer p {
        margin-bottom: 15px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2
    }

    .footer p.label {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600;
        color: #9da8d0
    }

    .footer p a {
        color: #fff
    }

    .footer .phx-text {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.2;
        color: hsla(0, 0%, 100%, .7)
    }

.mat-expansion-panel {
        box-sizing: content-box;
        display: block;
        margin: 0;
        border-radius: 4px;
        overflow: hidden;
        transition: margin 225ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
        position: relative
    }

    .mat-accordion .mat-expansion-panel:not(.mat-expanded),
    .mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing) {
        border-radius: 0
    }

    .mat-accordion .mat-expansion-panel:first-of-type {
        border-top-right-radius: 4px;
        border-top-left-radius: 4px
    }

    .mat-accordion .mat-expansion-panel:last-of-type {
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px
    }

    .cdk-high-contrast-active .mat-expansion-panel {
        outline: solid 1px
    }

    .mat-expansion-panel.ng-animate-disabled,
    .ng-animate-disabled .mat-expansion-panel,
    .mat-expansion-panel._mat-animation-noopable {
        transition: none
    }

    .mat-expansion-panel-content {
        display: flex;
        flex-direction: column;
        overflow: visible
    }

    .mat-expansion-panel-body {
        padding: 0 24px 16px
    }

    .mat-expansion-panel-spacing {
        margin: 16px 0
    }

    .mat-accordion>.mat-expansion-panel-spacing:first-child,
    .mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing {
        margin-top: 0
    }

    .mat-accordion>.mat-expansion-panel-spacing:last-child,
    .mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing {
        margin-bottom: 0
    }

    .mat-action-row {
        border-top-style: solid;
        border-top-width: 1px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        padding: 16px 8px 16px 24px
    }

    .mat-action-row button.mat-button-base,
    .mat-action-row button.mat-mdc-button-base {
        margin-left: 8px
    }

    [dir=rtl] .mat-action-row button.mat-button-base,
    [dir=rtl] .mat-action-row button.mat-mdc-button-base {
        margin-left: 0;
        margin-right: 8px
    }

.mat-expansion-panel-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0 24px;
        border-radius: inherit;
        transition: height 225ms cubic-bezier(0.4, 0, 0.2, 1)
    }

    .mat-expansion-panel-header._mat-animation-noopable {
        transition: none
    }

    .mat-expansion-panel-header:focus,
    .mat-expansion-panel-header:hover {
        outline: none
    }

    .mat-expansion-panel-header.mat-expanded:focus,
    .mat-expansion-panel-header.mat-expanded:hover {
        background: inherit
    }

    .mat-expansion-panel-header:not([aria-disabled=true]) {
        cursor: pointer
    }

    .mat-expansion-panel-header.mat-expansion-toggle-indicator-before {
        flex-direction: row-reverse
    }

    .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator {
        margin: 0 16px 0 0
    }

    [dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator {
        margin: 0 0 0 16px
    }

    .mat-content {
        display: flex;
        flex: 1;
        flex-direction: row;
        overflow: hidden
    }

    .mat-expansion-panel-header-title,
    .mat-expansion-panel-header-description {
        display: flex;
        flex-grow: 1;
        margin-right: 16px
    }

    [dir=rtl] .mat-expansion-panel-header-title,
    [dir=rtl] .mat-expansion-panel-header-description {
        margin-right: 0;
        margin-left: 16px
    }

    .mat-expansion-panel-header-description {
        flex-grow: 2
    }

    .mat-expansion-indicator::after {
        border-style: solid;
        border-width: 0 2px 2px 0;
        content: "";
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        vertical-align: middle
    }

    .cdk-high-contrast-active .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true])::before,
    .cdk-high-contrast-active .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true])::before,
    .cdk-high-contrast-active .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true])::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        box-sizing: border-box;
        pointer-events: none;
        border: 3px solid;
        border-radius: 4px;
        content: ""
    }

.mat-icon {
        background-repeat: no-repeat;
        display: inline-block;
        fill: currentColor;
        height: 24px;
        width: 24px
    }

    .mat-icon.mat-icon-inline {
        font-size: inherit;
        height: inherit;
        line-height: inherit;
        width: inherit
    }

    [dir=rtl] .mat-icon-rtl-mirror {
        transform: scale(-1, 1)
    }

    .mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,
    .mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon {
        display: block
    }

    .mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,
    .mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon {
        margin: auto
    }

/*products*/

.breadcrumb {
    background-color: #fff;
    border-radius: 0;
    padding: .75rem 0;
    font-size:14px;
}

.breadcrumb-item+.breadcrumb-item:before {
    content: "›";
    color: #b7bfc7;
    padding: 0 12px;
    font-weight: medium
}

.breadcrumb-item:last-child {
    color: #414245;
    font-weight: medium !important
}

.breadcrumb a {
    text-decoration: none;
    color: #1876d1
}

.breadcrumb li {
    padding-left: 0
}

.breadcrumb span {
    color: #414245
}

@media screen and (max-width:768px) {
    .breadcrumb {
        padding: .75rem 0
    }

    .breadcrumb a,
    .breadcrumb span {
        font-size: 12px
    }
}


.brand .brand-logo-container {
    padding: 25px 0;
    width: auto
}

.brand .product-photo-container {
    margin-bottom: 50px
}

.brand .product-photo-container .product-photo {
    width: 100%;
    height: auto
}

.brand .wrapper {
    position: absolute;
    top: 40%;
    text-align: left;
    right: 0;
    left: 0
}

.brand .heading .title {
    display: inline-block;
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
    color: #414245;
    padding-top: 10px
}

.brand .pt-20 {
    padding-top: 27px
}

@media screen and (max-width:768px) {
    .brand .pt-20 {
        padding-top: 20px
    }
}

.brand .top-banner {
    width: 100%;
    max-height: 200px;
    -o-object-fit: cover;
    object-fit: cover
}

.brand .wrapper {
    position: absolute;
    top: 40%;
    text-align: left;
    right: 0;
    left: 0
}

.brand .title-left {
    font-size: 40px !important;
    line-height: 42px;
    color: #fff !important;
    font-weight: 300 !important;
    text-align: left;
    display: inline-block;
    padding: 0 15px 8px 0;
    border-bottom: 2px solid transparent;
    -o-border-image: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
    border-image: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
    border-top: 0;
    border-image-slice: 1
}


@media screen and (max-width:768px) {
    .tab-wrapper {
        position: static !important
    }

    .tabs-control:before {
        box-shadow: none !important
    }

    .tabs-section {
        overflow-x: auto !important;
        white-space: nowrap
    }

    .tabs-section::-webkit-scrollbar {
        display: none
    }
}

.tabs-control {
    background-color: #fff
}

.tabs-control:before {
    top: 120px;
    box-shadow: 0 6px 6px #00000029;
    content: "";
    display: block;
    height: 6px;
    position: sticky;
    z-index: 10
}

.tabs-control:after {
    background: linear-gradient(#fff 10%, hsla(0, 0%, 100%, .8) 50%, hsla(0, 0%, 100%, .4) 70%, transparent);
    top: 0;
    content: "";
    display: block;
    position: sticky
}

.tabs-control .tab-wrapper {
    position: sticky;
    top: 144px;
    background-color: #fff;
    border-bottom: 1px solid #aaa;
    z-index: 10;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .16)
}

.tabs-control .tab-wrapper .tabs-section {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: left;
    font-style: normal;
    text-align: center
}

.tabs-control .tab-wrapper .tabs-section li {
    padding: 0 15px 0 0;
    display: table
}

.tabs-control .tab-wrapper .tabs-section li a {
    border-bottom: 3px solid transparent;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #414245;
    line-height: 1;
    display: table-cell;
    vertical-align: bottom
}

.tabs-control .tab-wrapper .tabs-section li a:hover {
    border-bottom: 3px solid #1876d1
}

.tabs-control .tab-wrapper .tabs-section li a.active {
    border-bottom: 3px solid #1876d1;
    color: #1876d1;
    font-weight: 600;
}

.tabs-control .tab-wrapper.event {
    background-color: #e6e9ec
}

.tabs-control .tab-wrapper.event .tabs-section li {
    padding: 0
}

.tabs-control .tab-wrapper.event .tabs-section a {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 0 solid transparent;
    color: #414245
}

.tabs-control .tab-wrapper.event .tabs-section a.active,
.tabs-control .tab-wrapper.event .tabs-section a:hover {
    background-color: #002948;
    color: #fff;
    border-bottom: 0 solid #1876d1
}

.tabs-control .tab-content-section {
    background-color: #f2f5f9
}

.tab-seperator {
    background-color: aqua;
    width: 100%;
    height: 50px;
    text-align: center;
    font-style: italic;
    padding: 10px;
    font-weight: 500
}

@media screen and (max-width:768px) {
    .tabs-section {
        height: 55px
    }

    .tabs-section li {
        padding: 0 10px 0 0 !important
    }

    .tabs-section li a {
        color: #414245 !important;
        height: 50px
    }

    .tabs-section li a.active {
        border-bottom: 6px solid #1876d1 !important;
        color: #1876d1 !important
    }

    .sticky-nav {
        position: sticky;
        top: 55px;
        z-index: 10;
        background-color: #fff;
        align-items: center;
        overflow: hidden
    }

    .tab-gradient-left {
        background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
        width: 20px;
        left: 0
    }

    .tab-gradient-left,
    .tab-gradient-right {
        pointer-events: none;
        height: 50px;
        position: absolute;
        top: 0;
        z-index: 5
    }

    .tab-gradient-right {
        background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff);
        width: 55px;
        right: 0
    }
}


