﻿@charset "UTF-8";

/*=========================================================
CAD Viewer Style Start
===========================================================*/
.cad-viewer-wrap {
    background-image: linear-gradient(180deg, #DFE6EC 0%, #FFFFFF 78.14%);
    padding: 1em 1em 1em 1em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cad-viewer-wrap-without-box-shadow {
    background-image: linear-gradient(180deg, #DFE6EC 0%, #FFFFFF 78.14%);
    position: relative;
}

.cvw-cta-wrap {
    text-align: right;
    margin-bottom: 2em;
}

.ciw-img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.ccw-cta {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    background-color: var(--secondary, #00334d);
    padding: 0.5em 0.75em;
    margin-left: 0.75em;
}

    .ccw-cta.active {
        color: #ffffff;
        text-decoration: none;
    }

.cad-viewer-wrap {
    padding: 6em;
}

.cvw-cta-wrap {
    text-align: right;
    position: absolute;
    width: 80%;
    right: 1.25rem;
    top: 1em;
    margin: 0;
    opacity: 1;
}

.active .cvw-cta-wrap {
    opacity: 0;
}


.cvw-image-wrap {
    margin-bottom: 3em;
}

/* CAD Viewer Nav */

.cvw-menu {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0.5em;
    font-size: 1em;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .cvw-menu a {
        text-decoration: none;
        transition: all 0.1s linear;
    }

    .cvw-menu svg {
        transition: all 0.1s linear;
    }

    .cvw-menu a.active svg {
        transform: scale(1.1);
    }

    .cvw-menu.cvw-menu--xl {
        font-size: 1.5em;
    }

    .cvw-menu.cvw-menu--lg {
        font-size: 1.25em;
    }

    .cvw-menu.cvw-menu--m {
        font-size: .85em;
    }

    .cvw-menu.cvw-menu--sm {
        font-size: .75em;
    }

    .cvw-menu.cvw-menu--xs {
        font-size: .55em;
    }

.cm-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    margin: 0 0.5em 1.75em;
    position: relative;
}

    .cm-item.active .ci-link 
    {
        background-color: var(--secondary, #00334d);
        border-color: var(--secondary,#00334d);
        z-index: 99999;
    }

.ci-link {
    display: block;
    position: relative;
    font-size: 1em;
    width: 3.2em;
    height: 3.2em;
    border: 1px solid var(--secondary, #a8bdc8);
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
}

    .ci-link.active {
        border-color: #28628f;
        background-color: #28628f;
    }

    .ci-link svg {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
    }

        .ci-link svg path, .cm-item .ci-link svg path {
            fill: var(--secondary, #03405F);
        }

    .ci-link.active svg path,
    .cm-item.active .ci-link svg path 
    {
        fill: #ffffff;
    }

    .ci-link.active span,
    .cm-item.active .ci-link span 
    {
        display: block;
        color: var(--secondary,#00334d);
        opacity: 1;
    }

    .ci-link span {
        transition: all 0.1s linear;
        opacity: 0;
        position: absolute;
        left: -50%;
        margin: auto;
        font-size: 0.7em;
        line-height: 1em;
        bottom: -1.55em;
        text-transform: uppercase;
        font-weight: bold;
        color: #00334d;
        width: 200%;
    }

.cvw-sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    margin: auto;
    bottom: 120%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 8.75em;
    padding: 0.4em 0.625em;
    background-color: #00334d;
    border-radius: 5em;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.cm-item.active .cvw-sub-menu:after 
{
    content: "";
    position: absolute;
    top: 99%;
    height: 4.2em;
    border-radius: 0 0 30px 30px;
    left: 0;
    right: 0;
    width: 6.6em;
    z-index: 0;
    margin: auto;
    background-image: url('../images/menu_horizontal_bottom.svg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.cm-item.active .cvw-sub-menu {
    display: flex;
    justify-content: center;
}

.cm-item.active .cvw-sub-menu {
    display: flex;
    justify-content: center;
}

.cvw-sub-menu-scroll-wrap {
    display: flex;
    flex-direction: column;
    max-height: 15rem;
    overflow-y: hidden;
    overflow-y: auto;
    justify-content: flex-start;
    border-radius: 1.5em;
    -ms-overflow-style: scrollbar;
}

    .cvw-sub-menu-scroll-wrap::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2rem;
        background: linear-gradient( 0deg, rgba(0, 51, 77, 1) 0%, rgba(0, 51, 77, 0) 100% );
        border-radius: 0 0 1.5em 1.5em;
    }

    .cvw-sub-menu-scroll-wrap li:last-child {
        z-index: 10000;
    }

    .cvw-sub-menu-scroll-wrap li.active {
        cursor: pointer;
    }

/* IE11 Fix */
@media all and (-ms-high-contrast:none) {
    .foo {
        color: green
    }
    /* IE10 */
    *::-ms-backdrop,
    .cm-item.active .cvw-sub-menu
    {
        display: flex;
        flex-wrap: wrap;
        border-radius: 1.5em;
        width: 15em;
        min-width: 100%;
    }

    .cvw-sub-menu-scroll-wrap {
        display: flex;
        border-radius: 1.5em;
        width: 15em;
        min-width: 100%;
    }
}


.csm-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    opacity: 1;
}


    /* Secondary Nav Item Animations */

    .csm-item:nth-child(0n+1) {
        animation: csm-item .1s 1;
        animation-delay: .025s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+2) {
        animation: csm-item .1s 1;
        animation-delay: .05s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+3) {
        animation: csm-item .1s 1;
        animation-delay: .075s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+4) {
        animation: csm-item .1s 1;
        animation-delay: .1s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+5) {
        animation: csm-item .1s 1;
        animation-delay: .125s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+6) {
        animation: csm-item .1s 1;
        animation-delay: .15s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+7) {
        animation: csm-item .1s 1;
        animation-delay: .175s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+8) {
        animation: csm-item .1s 1;
        animation-delay: .2s;
        animation-fill-mode: backwards
    }

    .csm-item:nth-child(0n+9) {
        animation: csm-item .1s 1;
        animation-delay: .225s;
        animation-fill-mode: backwards
    }


@keyframes csm-item {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}



.cvw-menu__icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentColor;
}

.cm-item svg {
    font-size: 1.25em;
}

.cvw-menu__icon--lg {
    font-size: 2em !important;
}

/* CAD Viewer Nav Secondart */
.csi-link {
    display: block;
    position: relative;
    height: 3em;
    width: 3em;
    border-radius: 50%;
}

    .csi-link.active {
        background-color: #ffffff;
    }

    .csi-link svg {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        font-size: 2em;
    }

        .csi-link svg path {
            fill: #ffffff;
        }

    .csi-link.active svg path 
    {
        fill: #00334d;
    }

    .csi-link.active {
        color: red !important;
    }

    .csi-link.active {
        background-color: #ffffff;
    }

        .csi-link.active svg path {
            fill: #00334d;
        }


/* CAD Viewer Nav - Vertical Modifier */
@media (min-width: 600px) {

    .cvw-menu--vertical.cvw-menu {
        margin: 0;
        position: absolute;
        left: 1em;
        width: 4em;
        top: 1em;
        bottom: 0;
        flex-direction: column;
    }

    .cvw-menu--vertical .cvw-image-wrap {
        padding: 0;
    }

    .cvw-menu--vertical.cvw-menu .ci-link.active span,
    .cvw-menu--vertical.cvw-menu .cm-item.active .ci-link span 
    {
        display: block;
    }

    .cvw-menu--vertical.cvw-menu .cvw-sub-menu {
        right: auto;
        bottom: auto;
        top: -0.375em;
        left: 116%;
        margin: 0;
        border-radius: 0 30px 30px 0;
        transform: translateX(0);
    }

    .cvw-menu--vertical.cvw-menu .cm-item.active .cvw-sub-menu:after {
        right: auto;
        top: 0;
        height: 100%;
        left: -3.9375em;
        width: 3.95em;
        border-radius: 30px 0 0 30px;
        background: #00334d;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
        background-image: none;
    }


    .cvw-menu--vertical.cvw-menu .cvw-sub-menu--text {
        border-radius: 0 1.25em 1.25em 1.25em;
    }

    .cvw-menu--vertical.cvw-menu .cm-item.active .cvw-sub-menu--text:after
    {
        height: 3.75em;
    }

    .cvw-menu--vertical .csm-item:first-child .csi-link--text {
        border-radius: 0 1.25em 0 0;
    }

    .cvw-menu--vertical .csm-item:last-child .csi-link--text {
        border-radius: 0 0 1.25em 1.25em;
    }
}
/* IE11 Fix */
@media all and (-ms-high-contrast:none) and (min-width: 600px) {

    *::-ms-backdrop, .cvw-menu--vertical.cvw-menu .cvw-sub-menu {
        border-radius: 0 1.25em 1.25em 1.25em;
    }

    *::-ms-backdrop,
    .cvw-menu--vertical.cvw-menu .cm-item.active .cvw-sub-menu:after 
    {
        height: 3.75em;
    }
}

.cvw-sub-menu--text {
    flex-flow: column;
    padding: 0;
    border-radius: 1.25em;
}

.csi-link--text {
    color: white;
    display: block;
    padding: .5em 1em;
    white-space: nowrap;
    max-width: 20em;
    text-overflow: ellipsis;
    overflow: hidden;
    border-bottom: 1px solid #03405f;
}

    .csi-link--text.active {
        color: #00334d;
        text-decoration: none;
        background-color: white;
    }

.csm-item:first-child .csi-link--text {
    border-radius: 1.25em 1.25em 0 0;
}

.csm-item:last-child .csi-link--text {
    border-radius: 0 0 1.25em 1.25em;
}


/* CAD Viewer Help Menu */

.cvm-help-overlap {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 10;
    top: 0;
    left: 0;
}

.active .cvm-help-overlap {
    display: block;
}

.cho-cta-wrap {
    text-align: right;
    position: absolute;
    width: 80%;
    right: 2em;
    top: 1em;
    margin: 0;
    opacity: 1;
}


/* CAD Viewer Help Menu links */
.cho-help-menu {
    position: absolute;
    width: 96%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    top: 3em;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.chm-item {
    width: 33.2%;
    box-sizing: border-box;
    border-bottom: 1px solid #a8bdc8;
    padding: 0.3em;
    text-align: center;
    position: relative;
}

    .chm-item:nth-of-type(3n+1) a.chm-link {
        font-weight: bold;
    }

.chm-link {
    font-size: 0.875em;
    cursor: default;
    color: #212529;
    text-decoration: none;
}

    .chm-link.active {
        cursor: default;
        color: #212529;
        text-decoration: none;
    }

    .chm-link figure {
        margin: 0;
        min-height: 70px;
        position: relative;
    }

        .chm-link figure svg {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            right: 0;
            margin: auto;
        }

    .chm-link span {
        display: block;
    }

    .chm-link svg path.pathcolor {
        fill: #03405F;
    }

.ccw-close {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    background-color: #00334d;
    padding: 0.5em 1em;
    margin-left: 0.75em;
}

    .ccw-close.active {
        color: #ffffff;
        background-color: #28628f;
        text-decoration: none;
    }

/* CAD Viewer Help Menu dark background Note: for dark background use dark-bg class with  cvm-help-overlap */
.cvm-help-overlap.dark-bg {
    background-color: rgba(0, 51, 77, 0.96);
}

.dark-bg .chm-link svg path.pathcolor {
    fill: #FFFFFF;
}

.dark-bg .chm-link {
    color: #FFFFFF;
    text-decoration: none;
}

    .dark-bg .chm-link.active {
        color: #FFFFFF;
        text-decoration: none;
    }

.dark-bg .ccw-close {
    background-color: #FFFFFF;
    color: #00334d;
}

@media only screen and (max-width: 360px) {
    .chm-link figure {
        min-height: 44px !important;
    }

    .chm-link {
        font-size: 0.625em;
        padding-top: 8px;
        display: block;
    }

        .chm-link span {
            padding-top: 8px;
        }
}

@media only screen and (max-width: 600px) {
    .chm-link figure {
        min-height: 54px;
    }

    .cho-cta-wrap {
        right: 1em;
    }

    .ccw-close {
        font-size: 10px;
        padding: 0.25em 0.5em;
    }
}

@media (min-width:600px) {
    .chm-item {
        padding: 0.5em;
    }

    .no-btm-border {
        border-bottom: none;
    }
}

@media (min-width:960px) {
    .cho-help-menu {
        width: 80%;
    }
}

.ci-link svg.ci-vertical {
    display: none;
}

.cad-vertical .ci-link svg.ci-horizontal {
    display: none;
}

.cad-vertical .cvw-menu {
    margin: 0;
    position: absolute;
    left: 0.5em;
    top: 3em;
    width: 5em;
}

.cad-vertical .ci-link.active span,
.cad-vertical .cm-item.active .ci-link span {
    display: block;
    bottom: -2em;
}

.cvw-menu {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0.5em;
    font-size: 1em;
}

.cad-vertical .cvw-sub-menu {
    right: auto;
    bottom: auto;
    top: -0.375em;
    left: 116%;
    margin: 0;
    border-radius: 0 30px 30px 0;
    transform: translateX(0);
}

.cad-vertical .cm-item.active .cvw-sub-menu:after {
    right: auto;
    top: 0;
    height: 100%;
    left: -3.9375em;
    width: 3.95em;
    border-radius: 30px 0 0 30px;
    background: #00334d;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    background-image: none;
}

.cad-vertical .cvw-image-wrap {
    padding: 0;
}

.cad-vertical .ci-link svg.ci-vertical {
    display: block;
}

.cad-viewer-wrap.cad-vertical {
    position: relative;
    /*     min-height:37em; */
}

.cad-vertical .ci-link svg.ci-horizontal {
    display: none;
}

/***************************************************************************************************/

/* Spinner */

:root {
    --sk-size: 4rem;
    --sk-color: var(--secondary,#00334d);
}

.spinner {
    background-color: rgba(255,255,255,.75);
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    justify-content: center;
    flex-direction: column;
    z-index: 999999999999;
}

.download-spinner {
    background-color: rgba(255, 255, 255, 0.75);
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    justify-content: center;
    flex-direction: column;
}

.sk-wave {
    width: 4rem;
    width: var(--sk-size);
    height: 4rem;
    height: var(--sk-size);
    display: flex;
    justify-content: space-between;
    align-self: center;
}

.sk-wave-rect {
    background-color: #00334d;
    background-color: var(--sk-color);
    height: 100%;
    width: 15%;
    animation: sk-wave 1.2s infinite ease-in-out;
}

    .sk-wave-rect:nth-child(1) {
        animation-delay: -1.2s;
    }

    .sk-wave-rect:nth-child(2) {
        animation-delay: -1.1s;
    }

    .sk-wave-rect:nth-child(3) {
        animation-delay: -1.0s;
    }

    .sk-wave-rect:nth-child(4) {
        animation-delay: -0.9s;
    }

    .sk-wave-rect:nth-child(5) {
        animation-delay: -0.8s;
    }

@keyframes sk-wave {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }
}



.loading-bar {
    display: flex;
    height: 5px;
    width: 100%;
    max-width: 150px;
    border-radius: 5px;
    overflow: hidden;
    justify-content: space-between;
    align-self: center;
    margin-top: .5rem;
    background-color:rgb(223, 230, 236, .5);
}


    .loading-bar .progress-bar {
        /* display: flex; */
        height: 100%;
        width: 100%;
        background-color: var(--sk-color);
        background: rgb(0,51,77);
        background: linear-gradient(90deg, rgba(0,51,77,1) 0%, rgba(45,116,171,1) 100%);
        /* animation: progress-animation 5s ease-in-out; */
    }

