@import url('prodlib-fonts.css');
@import url('search-filter-suggestions.css');

:root {
    --prodlib-turquoise: #58aaa5;
    --turquoise-light: #abe0da;
    --prodlib-blue: #416377;
    --prodlib-darkblue: #292c33;
    --transparent-prodlib-darkblue: rgba(41, 44, 51, 0.95);
    --tranparent-white: rgba(255,255,255,0.95);
    /*--peach: #f3b79d;*/
    --peach: #f5ded6;
    --darkPeach: #ad9086;
}

/*  BASE HTML ELEMENTS  */

html {
    color: var(--prodlib-darkblue);
    accent-color: #d4f9f7;
}

body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    background-color: white;
}

div {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

/*  TYPOGRAPHY  */

a, a:focus, a:visited, a:active {
    text-decoration: none;
    color: var(--prodlib-turquoise);
}

a.toButton {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--prodlib-turquoise);
    color: white;
    font-weight: bolder;
    transition: all 0.5s linear;
}

a.toButton.big{
    padding: 30px 60px;
}

a.highlightImage:hover img{
    outline: 2px solid var(--prodlib-turquoise);
    outline-offset: 3px;
}

a:hover {
    color: var(--transparent-prodlib-darkblue);
}

a.toButton:hover {
    background-color: var(--prodlib-darkblue);
    color: white;
}

h1 {
    font-family: "Bariol_Regular";
    /*font-family: "Raleway", sans-serif;*/
    font-size: 4rem;
}

h2 {
    font-family: "Bariol_Thin";
    font-size: 3rem;
}

h3 {
    font-family: "RalewayBoldItalic";
    font-size: 1.5rem;
    opacity: 0.5;
}

h4, h5, h6 {
    opacity: 0.5;
}

    h1:first-child, h2:first-child, h3:first-child {
        margin-top: 0;
    }

p {
    max-width: 800px;
}

em {
    font-weight: bolder;
}

ul, ol {
    margin: 0;
    margin: 30px 0 30px 60px;
    padding: 0;
}

ul {
    list-style-type: none;
}

ul li:before {
    content: "\2022";
    color: var(--prodlib-darkblue);
    display: block;
    opacity: 0.15;
    font-size: 3rem;
    position: absolute;
    right: 100%;
    right: calc(100% + 15px);
    top:0;
    transform: translateY(-1.5rem);
}

.textWhite ul li:before {
    color: white;
}

.darkBG ul li:before {
    color: white;
}

li {
    margin-bottom: 15px;
    position: relative;
}

ol {
    list-style: none;
    counter-reset: new-list-counter;
}

ol li {
  counter-increment: new-list-counter;
  margin-bottom: 25px;
}

ol li::before {
  content: counter(new-list-counter) ".";
  color: var(--prodlib-darkblue);
  font-family: RalewayBlackItalic, Italic;
  opacity: 0.15;
  font-size: 2.5rem;
  display: block;
  position: absolute;
  right: 100%;
  right: calc(100% + 15px);
  top: 0;
  transform: translateY(-1.1rem);
}

.darkBG ol li::before {
    color: white;
}

blockquote {
    margin: 30px 0 30px 60px;
    font-size: 1.25rem;
    font-family: "RalewayBlackItalic";
    opacity: 0.2;
    position: relative;
    max-width: 740px;
}

blockquote:before {
    content: "\0022";
    position: absolute;
    right: 100%;
    right: calc(100% + 15px);
    top: -1.25rem;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 4rem;
}

.highlight {
    font-size: 1.75rem;
    font-family: "RalewayBlackItalic";
}

-highlight > p {
    max-width: 50vw;
}


.script {
    font-family: 'Gloria Hallelujah', cursive;
    color: var(--peach);
    line-height: 1.2;
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);*/
}

    .script.darker {
        color: var(--darkPeach);
    }


.textWhite {
    color: white;
}

.textLeft {
    text-align: left;
}

.textCentered {
    text-align: center;
}

.textRight {
    text-align: right;
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .highlight {
        font-size: 1.25rem;
    }

    a.toButton.big {
        padding: 7px 15px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .highlight {
        font-size: 1.1rem;
    }
}


/*  LAYOUT  */


.header {
    backdrop-filter: blur(10px);
    background: rgba(41,44,51, 0.9);
    padding: 20px 90px 20px 30px;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 100px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header > a {
    max-height: 100%;
    text-align: right;
    color: white;
    position: relative;
}

.header > a.active {
    text-decoration: underline;
    color: var(--prodlib-blue);
}

.header > a:first-of-type {
    flex-basis: 20%;
    height: 100%;
    max-height: 100%;
    padding: 15px;
    transform: translateY(-10px);
}

.header > a:first-of-type span {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 0.85rem;
    font-weight: normal;
    text-align: center;
}

.header > a:hover {
    color: var(--prodlib-turquoise);
    cursor: pointer;
}

.header a.bordered {
    transition: all 0.5s linear;
    padding: 15px;
}

.header a.bordered.prodlibBG {
    background-color: var(--prodlib-turquoise);
}

.header a.bordered.orangeBG {
    background-color: #f4ab1a;
}

.header a.bordered:hover {
    background-color: white;
    color: var(--prodlib-darkblue);
}

.header > a img {
    max-height: 100%;
    max-width: 100%;
}

.pageContainer {
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lead {
    height: 700px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 15px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lead.short{
    height: 400px;
}

.lead > h1 {
    padding: 30px 60px;
    margin: 0;
    background-color: rgba(255,255,255, 0.95);
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .lead > h1 {
        background-color: rgba(255,255,255, 0.66);
        backdrop-filter: blur(10px);
    }
}

.row {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
}

    .row > div {
        flex-grow: 1;
    }

.column20 {
    flex-basis: 20%;
    max-width: 20%;
}

.column25 {
    flex-basis: 25%;
    max-width: 25%;
}

.column33 {
    flex-basis: 33%;
    max-width: 33%;
}

.column40 {
    flex-basis: 40%;
    max-width: 40%;
}

.column50 {
    flex-basis: 50%;
    max-width: 50%;
}

.column60 {
    flex-basis: 60%;
    max-width: 60%;
}

.column66 {
    flex-basis: 66%;
    max-width: 66%;
}

.column100 {
    flex-basis: 100%;
    max-width: 100%;
}

.videoContainerFull {
    padding: 60px 25% 90px 25%;
}

.viewableImage:hover {
    filter: drop-shadow(0px 0px 7px var(--transparent-prodlib-darkblue));
    cursor: pointer;
}

.dividerLine {
    border-bottom: 1px solid #ececec;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer {
    background-color: var(--prodlib-darkblue);
    color: white;
    width: 100%;
    max-width: 1920px;
    padding: 60px 90px 60px 90px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .footer > div:first-of-type {
        flex-basis: 100%;
        text-align: center;
    }

    .footer > div:nth-of-type(n+2) {
        margin: 0 60px;
    }

    .footer a:hover {
        color: var(--prodlib-blue);
    }

    .footer b {
        display: block;
        margin-bottom: 7px;
    }

        .footer b:nth-of-type(n+1) {
            margin-top: 30px;
        }

    .footer p > span {
        display: block;
    }

    .footer > div:last-of-type {
        flex-basis: 100%;
        margin-top: 30px;
        text-align: center;
    }

        .footer > div:last-of-type > span {
            margin-top: 60px;
            font-size: 0.75rem;
            opacity: 0.5;
            display: block;
        }

        .footer > div:last-of-type div {
            display: inline-block;
        }

.footer-website {
    background-color: var(--turquoise-light);
    width: 100%;
}

.footer-website-slogan {
    text-align: center;
    font-size: 2rem;
    color: white;
    font-family: RalewayBlackItalic;
}

.footer-website-some {
    background-color: var(--prodlib-turquoise);
    text-align: center;
}

.footer-website-some a{
    color: white;
    margin: 0 15px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.footer-website-some a > img{
    height: 32px;
    mix-blend-mode: hard-light;
}

.footer-website-some a:hover{
    color: var(--prodlib-darkblue);
}

.footer-website-navigation {
    background-color: var(--prodlib-darkblue);
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 0.75rem;
}

.footer-website-navigation img{
    width: 100px;
    display: block;
    margin-bottom: 15px;
}

.footer-website-navigation > div:first-of-type{
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid var(--prodlib-blue);
}

.footer-navigationLinks a:hover {
    color: white;
}

.blackout {
    background-color: var(--transparent-prodlib-darkblue);
    backdrop-filter: blur(10px);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
}

.imageViewer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    padding: 15px 15px 15px 15px;
}

    .imageViewer img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .imageViewer .description {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        color: white;
        font-weight: bolder;
        text-shadow: 0px 0px 5px var(--transparent-prodlib-darkblue);
        padding-bottom: 45px;
    }

    .imageViewer .forward, .imageViewer .back {
        position: absolute;
        height: 50%;
        width: 90px;
        top: 25%;
    }

        .imageViewer .forward div, .imageViewer .back div {
            border: solid 15px transparent;
            height: 50px;
            width: 50px;
            position: absolute;
            top: 50%;
            left: 50%;
            border-bottom-color: white;
            border-right-color: white;
            filter: drop-shadow(0px 0px 7px var(--transparent-prodlib-darkblue));
        }

        .imageViewer .forward div {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .imageViewer .back div {
            transform: translate(-50%, -50%) rotate(135deg);
        }

    .imageViewer .forward {
        right: 15px;
    }

    .imageViewer .back {
        left: 0;
    }

    .imageViewer .close {
        position: absolute;
        top: 0;
        right: 15px;
        width: 90px;
        height: 90px;
    }

        .imageViewer .close span {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70%;
            height: 15px;
            background-color: white;
            display: block;
        }

            .imageViewer .close span:first-of-type {
                transform: translate(-50%, -7.5px) rotate(45deg);
            }

            .imageViewer .close span:last-of-type {
                transform: translate(-50%, -7.5px) rotate(-45deg);
            }

        .imageViewer .forward:hover, .imageViewer .back:hover, .imageViewer .close:hover {
            cursor: pointer;
            background-color: white;
        }

            .imageViewer .close:hover span {
                background-color: var(--prodlib-darkblue);
            }

            .imageViewer .forward:hover div, .imageViewer .back:hover div {
                border-bottom-color: var(--prodlib-darkblue);
                border-right-color: var(--prodlib-darkblue);
                filter: drop-shadow(0px 0px 0px var(--transparent-prodlib-darkblue));
            }

.mobileHeader {
    display: none;
}

.flowchart {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.flowchartWithHiglight {
    margin-top: 130px;
}

.flowchart > div {
    padding-right: 30px;
    position: relative;
}

.flowchartMainItem {
    background-color: var(--prodlib-turquoise);
    color: white;
    padding: 30px 45px;
    /*margin-right: 30px;*/
    font-weight: bolder;
    position: relative;
}

    .flowchartMainItem:after {
        content: "";
        border: 15px solid transparent;
        border-left-width: 30px;
        border-left-color: var(--prodlib-turquoise);
        position: absolute;
        top: 30px;
        left: 100%;
    }

    .flowchartMainItem.flowchartLastItem:after {
        border: 0;
    }

.flowchartSubItem {
    background-color: var(--prodlib-blue);
    color: white;
    padding: 30px;
}

.flowchartHightlight {
    width: 98%;
    width: calc(98% - 30px);
    height: 110%;
    position: absolute;
    top: -5%;
    left: 1%;
    background-image: url(/content/images/website/elements/higlight-box.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(1deg);
}

    .flowchartHightlight > span {
        position: absolute;
        bottom: 100%;
        left: 5%;
        transform-origin: bottom left;
        transform: rotate(-4deg);
        color: var(--peach);
        font-family: 'Gloria Hallelujah', cursive;
        font-size: 2rem;
        line-height: 1.75rem;
    }

.verticalFlowchart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    counter-reset: verticalFlowChartNumbering;
}

.verticalFlowchart.numbered{
    margin-left: 45px;
}

.verticalFlowchart > div {
    background-color: var(--turquoise-light);
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    font-weight: bold;
}

.verticalFlowchart.numbered > div:before{
    counter-increment: verticalFlowChartNumbering;
    content: counter(verticalFlowChartNumbering);
    color: var(--turquoise-light);
    font-family: RalewayBlackItalic;
    font-size: 2.5rem;
    position: absolute;
    right: 100%;
    transform: translateX(-5px);
    top: 0;
}

.verticalFlowchart > div:after{
    content:"";
    height:0;
    width: 0;
    border: 10px solid transparent;
    border-top-color: var(--turquoise-light);
    position: absolute;
    top:100%;
    left: 15px;
}

.verticalFlowchart.numbered > div:after{
    display: none;
}

.verticalFlowchart > div:last-of-type:after{
    border-top-color: transparent;
}

.verticalFlowchart a:hover{
    color: var(--prodlib-blue);
}

@media screen and (max-width: 1400px) {
    .flowchartHightlight > span {
        font-size: 1.5rem;
        line-height: 1.25rem;
    }
}

@media screen and (max-width: 1200px) {
    .videoContainerFull {
        padding: 45px 30px 60px 30px;
    }

    .imageViewer {
        padding: 15px 90px 15px 90px;
    }

    .header {
        font-size: 0.8rem;
    }

        .header > a:first-of-type span {
            font-size: 0.6rem;
            bottom: 0px;
        }

    .flowchartWithHiglight {
        margin-top: 90px;
    }

    .flowchartHightlight > span {
        font-size: 1.25rem;
        line-height: 1rem;
    }

    .flowchartMainItem, .flowchartSubItem {
        padding: 15px;
    }

        .flowchartMainItem:after {
            top: 10px;
        }
}

@media screen and (max-width: 1000px) {
    .header {
        font-size: 0.6rem;
    }

        .header > a:first-of-type span {
            font-size: 0.5rem;
        }

    .flowchart {
        display: block;
    }

        .flowchart.flowchartWithHiglight {
            margin-top: 0;
            padding-right: 100px;
        }

        .flowchart > div {
            display: flex;
            margin-bottom: 15px;
        }

    .flowchartMainItem:after {
        top: 100%;
        left: 15px;
        border: 15px solid transparent;
        border-top-color: var(--prodlib-turquoise);
    }

    .flowchartHightlight {
        width: 100%;
        height: 100%;
        background-image: url(/content/images/website/elements/higlight-box-horizontal.svg);
    }

        .flowchartHightlight span {
            transform: rotate(86deg);
            left: 100%;
            width: 500px;
        }

    .footer-website-navigation {
        align-items: stretch;
    }

    .footer-website-navigation > div:first-of-type{
        margin-bottom: 35px;
    }

    .footer-navigationLinks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 5px;
        margin-bottom: 15px;
    }

    .footer-navigationLinks a {
        display: block;
    }

    .footer_linkDivider{
        display: none;
    }
}


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

    .footer-website-slogan {
        font-size: 1rem;
    }

    .flowchart {
        padding-right: 0;
        overflow: hidden;
        max-width: 100%;
    }

    .flowchartMainItem, .flowchartSubItem {
        padding: 5px;
        font-size: 0.8rem;
    }

    .flowchartHightlight span {
        transform: rotate(0deg);
        left: 0%;
        width: 90vw;
        font-size: 0.7rem;
        max-height: 20px;
        overflow: hidden;
    }

    .row {
        flex-direction: column;
    }

    .row > div {
        flex-basis: auto;
        max-width: 100%;
    }

    .column20 {
        order: 80;
    }

    .column25 {
        order: 75;
    }

    .column33 {
        order: 66;
    }

    .column40 {
        order: 60;
    }

    .column50 {
        order: 50;
    }

    .column60 {
        order: 40;
    }

    .column66 {
        order: 33;
    }

    .column100 {
        order: 1;
    }

    .lead {
        padding: 0;
        max-height: 75vh;
    }

        .lead > h1 {
            padding: 7px 15px;
        }

    .videoContainerFull {
        padding: 30px 15px 45px 15px;
    }

    .footer {
        display: block;
        padding: 15px 15px 15px 30px;
    }

        .footer > div:nth-of-type(n+2) {
            margin: 0;
            margin-bottom: 60px;
        }

        .footer > div {
            width: 100%;
            max-width: 100%;
        }

            .footer > div:last-of-type div {
                display: block;
                margin-bottom: 30px;
            }

                .footer > div:last-of-type div:nth-of-type(even) {
                    display: none;
                }

    .imageViewer {
        padding: 90px 1px 90px 1px;
    }

        .imageViewer .forward, .imageViewer .back {
            height: 45px;
            width: 100%;
            left: 0;
            top: 45px;
        }

        .imageViewer .forward {
            top: calc(100% - 45px);
        }

            .imageViewer .forward div, .imageViewer .back div {
                border-width: 7px;
                height: 25px;
                width: 25px;
            }

            .imageViewer .forward div {
                transform: translate(-50%, -50%) rotate(45deg);
            }

        .imageViewer .back div {
            transform: translate(-50%, -50%) rotate(-135deg);
        }

        .imageViewer .close {
            width: 45px;
            height: 45px;
            right: 0;
        }

            .imageViewer .close span {
                height: 7px;
            }

                .imageViewer .close span:first-of-type {
                    transform: translate(-50%, -3.5px) rotate(45deg);
                }

                .imageViewer .close span:last-of-type {
                    transform: translate(-50%, -3.5px) rotate(-45deg);
                }

    .header {
        display: none;
    }

    .mobileHeader {
        display: block;
        backdrop-filter: blur(10px);
        background: rgba(41,44,51, 0.9);
        padding: 15px 15px 15px 15px;
        position: fixed;
        width: 100%;
        height: 100px;
        color: white;
        font-size: 1rem;
        font-weight: bold;
        z-index: 1000;
    }


        .mobileHeader > a:first-of-type span {
            display: block;
            text-align: center;
            font-size: 0.8rem;
            color: white;
            position: absolute;
            left: 15px;
            bottom: 0;
            padding: 3px;
            font-weight: normal;
        }

        .mobileHeader > a:first-of-type:hover span {
            color: var(--prodlib-turquoise);
        }

        .mobileHeader > a {
            box-sizing: border-box;
            display: block;
            width: 66%;
            height: 100%;
            max-height: 100%;
            padding-bottom: 15px;
        }

            .mobileHeader > a img {
                object-position: left top;
            }

        .mobileHeader > div:first-of-type {
            position: absolute;
            width: 50px;
            height: 50px;
            top: 25px;
            right: 25px;
            border: 1px solid white;
            opacity: 0.3;
            padding-bottom: 15px;
        }



            .mobileHeader > div:first-of-type:hover {
                opacity: 1;
                cursor: pointer;
            }

            .mobileHeader > div:first-of-type > span {
                position: absolute;
                background-color: white;
                height: 5px;
                width: 80%;
                top: 50%;
                left: 10%;
                transform: translate(0, -50%);
                transition: all 0.5s linear;
            }

                .mobileHeader > div:first-of-type > span:first-of-type {
                    top: 25%;
                }

                .mobileHeader > div:first-of-type > span:last-of-type {
                    top: 75%;
                }

            .mobileHeader > div:first-of-type.active span:nth-of-type(2) {
                width: 0;
                left: 50%;
            }

            .mobileHeader > div:first-of-type.active span:first-of-type {
                top: 50%;
                transform: translate(0, -50%) rotate(45deg);
            }

            .mobileHeader > div:first-of-type.active span:last-of-type {
                top: 50%;
                transform: translate(0, -50%) rotate(-45deg);
            }

        .mobileHeader > div:last-of-type {
            max-height: 0;
            position: absolute;
            top: 100%;
            left: 0;
            height: 90vh;
            height: calc(100vh - 100px);
            width: 100%;
            z-index: 1500;
            overflow: hidden;
            backdrop-filter: blur(10px);
            background: rgba(41,44,51, 0.9);
            padding: 0px;
        }

            .mobileHeader > div:last-of-type.active {
                max-height: none;
                overflow: auto;
                padding: 15px;
            }

            .mobileHeader > div:last-of-type > a {
                box-sizing: border-box;
                color: white;
                display: block;
                padding: 5px;
                width: 100%;
                border: 1px solid white;
                margin-bottom: 5px;
            }

                .mobileHeader > div:last-of-type > a:hover {
                    color: var(--prodlib-turquoise);
                    border: 1px solid var(--prodlib-turquoise);
                    cursor: pointer;
                }
    .footer-navigationLinks {
        grid-template-columns: repeat(1, 1fr);
        margin-right: 15px;
    }
}


/*  COMMON STYLINGS  */

button {
    border: 0;
    border-radius: 0;
    background-color: var(--prodlib-turquoise);
    color: white;
    font-weight: bolder;
    padding: 15px 30px;
    transition: background-color 0.5s linear;
}

    button:hover {
        cursor: pointer;
        background-color: var(--prodlib-darkblue);
    }

.flex {
    display: flex;
}

.flexCentered {
    justify-content: center;
}


.fitImage {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.fittedPosTop {
    object-position: top center;
}

.fittedPosBottom {
    object-position: bottom center;
}

.p15 {
    padding: 15px;
}

.p30 {
    padding: 30px;
}

.p60 {
    padding: 60px;
}

.p90 {
    padding: 90px;
}

.p120 {
    padding: 120px;
}

.pt15 {
    padding-top: 15px;
}

.pt30 {
    padding-top: 30px;
}

.pt45 {
    padding-top: 45px;
}

.pt60 {
    padding-top: 60px;
}

.pt90 {
    padding-top: 90px;
}

.pt120 {
    padding-top: 120px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb45 {
    padding-bottom: 45px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb120 {
    padding-bottom: 120px;
}

.opacity25 {
    opacity: 0.25;
}

.opacity50 {
    opacity: 0.5;
}

.opacity66 {
    opacity: 0.66;
}

.opacity75 {
    opacity: 0.75;
}

.clampHeight300 {
    max-height: 300px;
}

.clampHeight400 {
    max-height: 400px;
}

.clampHeight500 {
    max-height: 500px;
}

.clampHeight600 {
    max-height: 600px;
}

.clampHeight600 {
    max-height: 700px;
}

@media screen and (max-width: 1200px) {
    .p15 {
        padding: 15px;
    }

    .p30 {
        padding: 15px;
    }

    .p60 {
        padding: 30px;
    }

    .p90 {
        padding: 60px;
    }

    .p120 {
        padding: 90px;
    }
}

@media screen and (max-width: 768px) {
    .p15 {
        padding: 15px 15px;
    }

    .p30 {
        padding: 15px 15px;
    }

    .p60 {
        padding: 30px 15px;
    }

    .p90 {
        padding: 45px 15px;
    }

    .p120 {
        padding: 60px 15px;
    }
}

/*  GALLERIES  */

.linkGallery {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    margin-bottom: 60px;
}

    .linkGallery a {
        flex-grow: 1;
        flex-shrink: 1;
        display: block;
        max-height: 60px;
        max-width: 100%;
        margin-right: 60px;
    }

        .linkGallery a:last-of-type {
            margin-right: 0;
        }

    .linkGallery img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.imageGallery {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.imageGalleryWrap {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.imageGallery > div {
    flex-basis: 33%;
    max-width: 100%;
    height: 30vh;
    padding: 15px;
}

.imageGallery.medium > div {
    flex-basis: 20%;
    max-width: 20%;
    height: 20vh;
    padding: 15px;
}

.imageGallery.small > div {
    flex-basis: 10%;
    max-width: 10%;
    height: 10vh;
    padding: 15px;
}

.imageGallery.logo > div {
    flex-basis: 20%;
    max-width: 20%;
    height: auto;
    padding: 15px;
}

.imageGallery img {
    width: 100%;
    object-fit: contain;
    object-position: center center;
}

@media screen and (max-width: 1600px) {
    .imageGallery.logo > div {
        flex-basis: 33%;
        max-width: 33%;
    }
}

@media screen and (max-width: 1400px) {
    .linkGallery {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
    }

    .linkGallery a {
        flex-grow: 0;
        flex-shrink: 0;
        display: block;
        max-height: 80px;
        flex-basis: 20%;
        margin: 0 45px 45px 0;
    }

    .linkGallery a:last-of-type {
        margin: 0 0px 30px 0;
    }

    .imageGallery.logo > div {
        flex-basis: 50%;
        max-width: 50%;
    }
    
}

@media screen and (max-width: 768px) {
    .linkGallery a {
        margin: 0 0.5% 30px 0.5%;
        flex-basis: 48%;
        max-height: 50px;
    }

    .imageGallery {
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
    }

        .imageGallery > div {
            flex-basis: 100%;
            max-height: 20vh;
            padding: 1px 0px 15px 0px;
        }
}

/* EXPANDABLE  */


.expandable {
    position: relative;
    overflow: hidden;
    height: 6rem;
    margin-bottom: 30px;
    transition: height 1s linear;
}

    .expandable > div:last-of-type {
        width: 100%;
        height: 3rem;
        max-width: 800px;
        position: absolute;
        bottom: 0;
        left: 0;
        border-bottom: 2px solid rgba(0,0,0,0.05);
    }

.darkBG .expandable > div:last-of-type {
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

.expandable > div:last-of-type:hover {
    cursor: pointer;
    background-color: var(--transparent-prodlib-darkblue);
}

.darkBG .expandable > div:last-of-type:hover {
    background-color: var(--tranparent-white);
}

.expandable > div:last-of-type > div {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 10px) rotate(45deg);
    height: 30px;
    width: 30px;
    border: 7px solid transparent;
    border-bottom-color: var(--prodlib-darkblue);
    border-right-color: var(--prodlib-darkblue);
}

.darkBG .expandable > div:last-of-type > div {
    border-bottom-color: white;
    border-right-color: white;
}

.expandable > div:last-of-type:hover > div {
    border-bottom-color: white;
    border-right-color: white;
}

.darkBG .expandable > div:last-of-type:hover > div {
    border-bottom-color: var(--prodlib-darkblue);
    border-right-color: var(--prodlib-darkblue);
}

.expandable.active {
    height: auto;
    padding-bottom: 3rem;
}

    .expandable.active > div:last-of-type {
        border-bottom: 0;
    }

        .expandable.active > div:last-of-type > div {
            transform: translate(-50%, 25px) rotate(-135deg);
        }




/*  BGS  */


.whiteBG {
    background-color: white;
}

.darkBG {
    background-color: var(--prodlib-darkblue);
    color: white;
}

    .darkBG a:hover {
        color: var(--prodlib-blue);
    }

    .darkBG .viewableImage:hover {
        filter: drop-shadow(0px 0px 7px rgba(179,224,221,1));
    }

.prodlibGradient {
    background: rgb(88,170,165);
    background: linear-gradient(142deg, rgba(88,170,165,1) 0%, rgba(65,99,119,1) 100%);
}

.gradient01 {
    background: rgb(146,179,199);
    background: linear-gradient(166deg, rgba(146,179,199,1) 0%, rgba(182,230,227,1) 45%, rgba(255,255,244,1) 71%, rgba(255,255,255,1) 100%);
}

.gradient02 {
    background: rgb(88,170,165);
    background: linear-gradient(144deg, rgba(88,170,165,1) 0%, rgba(255,255,255,1) 100%);
}

.gradient03 {
    background: rgb(41,44,51);
    background: linear-gradient(131deg, rgba(41,44,51,1) 0%, rgba(19,94,90,1) 20%, rgba(88,170,165,1) 86%, rgba(219,242,241,1) 100%);
}

.gradient04 {
    background: rgb(255,255,255);
    background: linear-gradient(131deg, rgba(255,255,255,1) 0%, rgba(242,241,219,1) 13%, rgba(88,170,165,1) 35%, rgba(19,70,94,1) 77%, rgba(41,44,51,1) 100%);
}

.gradient05 {
    background: rgb(41,44,51);
    background: linear-gradient(342deg, rgba(41,44,51,1) 47%, rgba(65,99,119,1) 100%);
}

.gradient06 {
    background: rgb(172,226,223);
    background: linear-gradient(160deg, rgba(172,226,223,1) 0%, rgba(105,152,180,1) 100%);
}

.gradient07 {
    background: rgb(213,255,252);
    background: linear-gradient(114deg, rgba(213,255,252,1) 0%, rgba(88,170,165,1) 17%, rgba(88,170,165,1) 86%, rgba(255,253,216,1) 100%);
}

.gradient08 {
    background: rgb(255,255,255);
    background: linear-gradient(162deg, rgba(255,255,255,1) 0%, rgba(111,190,185,1) 20%);
}

/* CONTACT FORM */

#captcha-outer-container.error {
    border: 3px solid #ed461c;
}

#sendContactFormButton {
    background-color: #58aaa5;
    color: white;
}

.manufacturersForm input.error {
    border: 2px solid #ed461c;
    position: relative;
}






/*  POPUP  */

.popup_blackout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #323232;
    background-color: rgba(0,0,0, 0.75);
    z-index: 2000000;
    display: none;
}

.popup_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000001;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.popup_confirmation {
    width: 100%;
    max-width: 500px;
    height: 200px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    border-top: 6px solid #58aaa5;
    border-top: 6px solid var(--prodlib-turquoise);
}

/*  ANIMATIONS  */
.drawnInHorizontalLoop {
    -webkit-mask-image: linear-gradient(to right, transparent 24%, white 25%, white 75%, transparent 76%);
    mask-image: linear-gradient(to right, transparent 24%, white 25%, white 75%, transparent 76%);
    -webkit-mask-size: 400%;
    mask-size: 400%;
    animation-name: maskMoveHorizontal;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes maskMoveHorizontal {
    0% {
        -webkit-mask-position: 100% 0%;
        mask-position: 100% 0%;
    }

    25% {
        -webkit-mask-position: 50% 0%;
        mask-position: 50% 0%;
    }

    75% {
        -webkit-mask-position: 50% 0%;
        mask-position: 50% 0%;
    }

    100% {
        -webkit-mask-position: -2% 0%;
        mask-position: -2% 0%;
    }
}


/*  Loading animated icons  */
.lds-default {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-default div {
        position: absolute;
        width: 5px;
        height: 5px;
        background: #fff;
        border-radius: 50%;
        animation: lds-default 1.2s linear infinite;
    }

        .lds-default div:nth-child(1) {
            animation-delay: 0s;
            top: 29px;
            left: 53px;
        }

        .lds-default div:nth-child(2) {
            animation-delay: -0.1s;
            top: 18px;
            left: 50px;
        }

        .lds-default div:nth-child(3) {
            animation-delay: -0.2s;
            top: 9px;
            left: 41px;
        }

        .lds-default div:nth-child(4) {
            animation-delay: -0.3s;
            top: 6px;
            left: 29px;
        }

        .lds-default div:nth-child(5) {
            animation-delay: -0.4s;
            top: 9px;
            left: 18px;
        }

        .lds-default div:nth-child(6) {
            animation-delay: -0.5s;
            top: 18px;
            left: 9px;
        }

        .lds-default div:nth-child(7) {
            animation-delay: -0.6s;
            top: 29px;
            left: 6px;
        }

        .lds-default div:nth-child(8) {
            animation-delay: -0.7s;
            top: 41px;
            left: 9px;
        }

        .lds-default div:nth-child(9) {
            animation-delay: -0.8s;
            top: 50px;
            left: 18px;
        }

        .lds-default div:nth-child(10) {
            animation-delay: -0.9s;
            top: 53px;
            left: 29px;
        }

        .lds-default div:nth-child(11) {
            animation-delay: -1s;
            top: 50px;
            left: 41px;
        }

        .lds-default div:nth-child(12) {
            animation-delay: -1.1s;
            top: 41px;
            left: 50px;
        }

@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.lds-dual-ring {
    display: none; /*inline-block*/
    width: 16px;
    height: 16px;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 11px;
        height: 11px;
        margin: 1px;
        border-radius: 50%;
        border: 3px solid #58aaa5;
        border-color: #fff transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*  INDEX LEAD  */

.indexBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.indexBg video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.indexBg:after{
    content:"";
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 38%, rgba(255,255,255,0) 67%);

    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.indexLead {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10;
    padding: 90px 90px 0px 90px;
    
}

.indexLead ~ div{
    z-index: 10;
}

.indexLead > div{
    width: 50%;
    max-width: 50%;
}

.indexLead img{
    display: block;
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.indexLead h1{
    appearance: none;
    font-family: RalewayBlackItalic;
    color: var(--prodlib-blue);
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.25), 0px 0px 7px rgba(255, 255, 255, 0.5);
    display: block;
}

.indexLead h1 > span {
    display: block;
}

.indexLead h1 i {
    display: block;
    height:0;
    width: 0;
}

.indexLead h1 span:first-of-type{
    font-size: 2.5rem;
    font-family: "Bariol_Regular";
    margin-bottom: 5px;
    
}

.indexLead a{
    font-family: RalewayBlackItalic;
    font-size: 1.5rem;
}

.indexCTA {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.indexCTA > div:last-of-type{
    padding-left: 30px;
    color: var(--prodlib-blue);
    font-size: 1.25rem;
    font-family: RalewayBoldItalic;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.25), 0px 0px 7px rgba(255, 255, 255, 0.5);
}

.indexClassificationsAndLogos {
    margin: 90px 90px 15px 90px;
    background-color: white;
    border-top: 6px solid var(--prodlib-turquoise);
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
}

.indexClassifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    max-width: 100%;
    padding: 15px;
}

.indexClassifications a{
    margin: 0 5px;
}

.indexClassifications img{
    width: 32px;
}

.indexCards#wl21_searchResults {
    padding: 15px 90px;
    display: flex;
    column-gap: normal;
    row-gap: normal;
    justify-content: space-evenly;
}

.indexCards > a{
    display: block;
    box-sizing: border-box;
    flex-basis: 10.5%;
    max-width: 10.5%;
}

/* NEWS */
.newsPluginItemTemplate {
    display: none
}

@media screen and (max-width: 1600px) {
    .indexCards > a {
        flex-basis: 18%;
        max-width: 18%;
    }
}

@media screen and (max-width: 1500px) {
    .indexLead a {
        font-size: 1.25rem;
        padding: 7px 15px;
    }
    .indexCTA > div:last-of-type {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 1300px) {
    .indexClassificationsAndLogos {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .indexClassificationsAndLogos > div{
        flex-grow: unset;
    }

    .indexLead h1{
    }


    .indexLead a{
        font-size: 1rem;
    }

    .indexCTA > div:last-of-type{
        font-size: 1rem;
    }

    .indexCards > a {
        flex-basis: 23%;
        max-width: 23%;
    }
}


@media screen and (max-width: 1000px) {
    
    .indexCards > a {
        flex-basis: 31%;
        max-width: 31%;
    }
}

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

    .indexBg {
        position: relative;
        height: 40vh;
        margin-top: 30px;
    }

    .indexBg:after{
        display: none;
    }

    .indexLead {
        padding: 30px 30px 30px 30px;
        height: auto;
        background-color: white;
    }

    .indexLead h1 i{
        display: none;
    }

    .indexLead > div{
        width: 100%;
        max-width: 100%;
    }

    .indexClassificationsAndLogos {
        margin: 15px 15px 5px 15px;
    }

    .indexLead h1 {
        font-size: 1rem;
    }

    .indexLead h1 span:first-of-type {
        font-size: 1.3rem;
    }

    .indexLead a {
        font-family: RalewayBlackItalic;
        font-size: 1rem;
        padding: 5px 15px;
    }

    .indexCTA {
        display: block;
        margin: 0;
    }

    .indexCTA > div:first-of-type {
        margin-bottom: 15px;
    }

    .indexCTA > div:last-of-type {
        font-size: 1rem;
        padding-left: 0;
    }

    .indexCards > a {
        flex-basis: 99%;
        max-width: 99%;
    }
}

/*  DOWNLOAD PAGE  */

.downloadPage-container {
    border: 1px solid #58aaa5;
    padding: 30px;
    margin: 30px 90px 0 90px;
}
.grecaptcha-badge {
    visibility: hidden;
}
@media screen and (max-width: 1200px) {
    .downloadPage-container {
        padding: 15px;
        margin: 15px 15px 0 15px;
    }
}

