﻿/* @import url("/Styles/pag-styles.css"); */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/*
font-weights
normal 400
semibold 600
bold 700
*/

:root {
    /*colors*/
    --color-dark-grey: #212529;
    --color-greyish-brown: #444444;
    --color-brownish-grey: #707070;
    --color-slate-grey: #585c60;
    --color-light-grey: #cfcfcf;
    --color-warm-grey: #9b9b9b;
    --color-marine-blue: #003f64;
    --color-light-navy: #195273;
    --color-ugly-blue: #2e6b8f;
    --color-petrol: #006472;
    --color-sea: #2c8e95;
    --color-light-teal: #a1d7c7;
    --color-mid-blue: #207bb1;
    --color-duck-egg-blue: #d8e7e1;
    --color-reddish-orange: #f2421d;
    --color-pastel-red: #f16244;
    --color-pale-red: #f1613c;
    --color-melon: #fc735e;
    --color-orangey-yellow: #fbb11f;
    --color-white: #f5f5f5;
    /*font weights*/
    --weight-normal: 400;
    --weight-semi-bold: 600;
    --weight-bold: 700;
}

/*Grid fixes*/
@media screen and (max-width: 1200px) {
    .container .sf_cols > [class*="sf_2cols_"] {
        width: 100%;
        margin-bottom: 30px;
    }

        .container .sf_cols > [class*="sf_2cols_"] > .sf_colsIn {
            margin-left: 0;
            margin-right: 0;
        }
}

@media screen and (min-width: 1200px) {
    .title-row.blue {
        background: var(--color-marine-blue);
        height: auto !important;
    }
}

@media screen and (max-width: 1199px) {

    .title-row.blue {
        background: none;
    }
}

.content-box h2.blue-title {
    color: var(--color-marine-blue);
    display: table;
}


.no-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .no-bullets li {
        margin: 0;
        padding: 0;
    }

.pag-button {
    padding: 9px 36px 11px;
    border-radius: 5px;
    color: #fff;
    background: var(--color-mid-blue);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

    .pag-button:hover {
        background: var(--color-marine-blue);
    }

.toggle-trigger {
    cursor: pointer;
}

    .toggle-trigger .icon {
        float: right;
        font-size: 26px;
        color: var(--color-mid-blue);
    }

        .toggle-trigger:hover .icon {
            color: var(--color-dark-grey);
        }

    .toggle-trigger .fa-chevron-circle-up {
        display: none;
    }

    .toggle-open .toggle-trigger .fa-chevron-circle-up {
        display: inline-block;
    }

    .toggle-open .toggle-trigger .fa-chevron-circle-down {
        display: none;
    }

.toggle-target {
    overflow: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
    transition: max-height .25s ease-in-out;
}

.toggle-open .toggle-target {
    margin-bottom: 15px;
    max-height: 1000px;
}

.tooltip {
    position: relative;
    cursor: pointer;
}
    .tooltip:before {

    }
    /*the text of the tooltip and visible wrapper*/
    .tooltip i {
        position: absolute;
        z-index: 2;
        top: calc(100% + 10px);
        left: calc(50% - 96px);
        max-height: 0;
        width: 200px;
        overflow: hidden;
        background: #fff;
        border: 1px solid white;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-style: normal;
        font-size: 14px;
    }

    .tooltip.tooltip-open i {
        max-height: 200px;
        border-color: var(--color-dark-grey);
        padding: 6px;
        overflow: visible;
        box-shadow: -2px 2px 4px 0px rgba(0, 0, 0, .2);
    }
        /*the little arrow*/
        .tooltip.tooltip-open i:before {
            content: '';
            display: block;
            overflow: visible;
            height: 10px;
            width: 10px;
            position: absolute;
            left: calc(50% - 10px);
            top: -6px;
            transform: rotate(45deg);
            background: #fff;
            border: 1px solid;
            border-top-color: var(--color-dark-grey);
            border-left-color: var(--color-dark-grey);
            border-bottom: none;
            border-right: none;
        }
@media screen and (min-width: 960px) {
    .interior-layout__main p {
        font-size: 16px !important;
    }
}

.pag-biosimilar-check {
    margin-bottom: 35px;
}
/* unordered list containing checkboxes and labels */
.fancycheck li {
    overflow: hidden;
    min-height: 18px;
    margin-bottom: 30px;
}

.fancycheck input[type='checkbox'],
.fancycheck input[type='hidden'] {
    position: absolute;
    left: -60px;
}

    .fancycheck input[type='checkbox'] ~ label,
    .fancycheck input[type='hidden'] ~ label {
        position: relative;
        padding: 0 0 0 30px;
        margin: 0;
        line-height: 1.25;
        color: var(--color-dark-grey);
    }

        .fancycheck input[type='checkbox'] ~ label:before,
        .fancycheck input[type='hidden'] ~ label:before {
            font-family: "Font Awesome 5 Pro";
            content: "";
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
            position: absolute;
            left: 0;
            display: block;
            height: 18px;
            width: 18px;
            border: 1px solid var(--color-slate-grey);
        }

    .fancycheck input[type='checkbox']:checked ~ label:before {
        content: '\f00c';
        color: var(--color-white);
        background: var(--color-mid-blue);
        border-color: var(--color-mid-blue);
    }

@media screen and (max-width: 719px){
    .pag-content-wrap .flex-item:nth-of-type(6) {
        order: 6;
    }
    .pag-content-wrap .flex-item:nth-of-type(7) {
        order: 7;
    }
    .pag-content-wrap .flex-item:nth-of-type(8) {
        order: 8;
    }
    .pag-content-wrap .flex-item:nth-of-type(9) {
        order: 9;
    }
}

.pag-content-wrap {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
}
    .sf_colsOut.interior-layout__main a,
    .pag-content-wrap a {
        color: var(--color-marine-blue) !important;
        font-weight: normal;
    }

        .pag-content-wrap a:hover {
            color: var(--color-marine-blue) !important;
            text-decoration: underline;
        }

    .pag-content-wrap label {
        font-size: 16px;
    }

    .pag-content-wrap input[type=text] {
        padding: 10px;
        border-radius: 5px;
        border-color: var(--color-slate-grey);
    }

.pag-product,
.pag-program,
.pag-company {
    border-top: 2px solid var(--color-light-grey);
    padding-top: 25px;
    padding-bottom: 40px;
}

.pag-program-url,
.pag-program-url2 {
    margin-bottom: 6px;
}

.pag-product-brandname {
    margin-bottom: 10px;
}

.section-heading,
.pag-listing h2 {
    font-size: 28px !important;
    line-height: 38px;
    color: var(--color-marine-blue);
    font-weight: var(--weight-bold);
}

.pag-listing h2 a {
    color: var(--color-marine-blue);
    font-weight: var(--weight-bold);
}

.pag-listing .no-bullets li {
    padding-bottom: 25px;
}

.pag-search-form {
    padding: 0;
    margin-bottom: 60px;
}

@media screen and (min-width: 720px) {
    .pag-search-form {
        border: 1px solid var(--color-light-grey);
        padding: 25px 15px;
    }
    #pag_search_results {
        padding-right: 60px;
    }
}

@media screen and (min-width: 1240px) {
    .pag-search-form {
        padding: 45px 60px;
    }
}

.pag-search-form .pag-listing h3 {
    font-size: 17px !important;
    line-height: 25px;
    color: var(--color-dark-grey);
    font-weight: 700 !important;
}

.pag-listing .pag-company-name,
.pag-listing .pag-product-name {
    margin-bottom: 10px;
    font-size: 21px !important;
    line-height: 28px;
    font-weight: var(--weight-bold) !important;
    color: var(--color-mid-blue) !important;
}

    .pag-listing .pag-company-name a,
    .pag-listing .pag-product-name a {
        color: var(--color-mid-blue) !important;
        font-weight: var(--weight-bold) !important;
    }

        .pag-listing .pag-company-name a:hover,
        .pag-listing .pag-product-name a:hover {
            color: var(--color-marine-blue) !important;
            text-decoration: underline;
        }

.pag-product h3,
.pag-program h3,
.pag-company h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 21px !important;
    line-height: 28px;
    color: var(--color-dark-grey);
}

/* ul containing items that canvas embed removed via click */
.pills {

}

.pills li {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}

.clickable-pill {
    position: relative;
    display: inline-block;
    padding: 8px 60px 8px 25px;
    margin-right: 25px;
    margin-bottom: 22px;
    color: var(--color-marine-blue);
    font-weight: var(--weight-semi-bold);
    border: 1px solid var(--color-marine-blue);
    border-radius: 5px;
    cursor: default;
}

    .clickable-pill:hover {
        color: var(--color-white);
        background-color: var(--color-marine-blue);
    }

    .clickable-pill .clickable-pill-icon {
        position: absolute;
        right: 18px;
        top: 8px;
        margin-left: 10px;
        display: inline-block;
        height: 24px;
        width: 24px;
        border-radius: 50%;
        color: var(--color-white);
        background-color: var(--color-marine-blue);
        cursor: pointer;
    }
    .clickable-pill:hover .clickable-pill-icon {
        color: var(--color-marine-blue);
        background-color: var(--color-white);
    }
        .clickable-pill .clickable-pill-icon:before {
            position: relative;
            top: 3px;
            left: 6px;
        }

        .clickable-pill.hide {
            display: none;
        }

.removeable-item {
    transition: all .5s ease-in-out;
}

    .removeable-item.hide {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all .5s ease-in-out;
    }

.companies-header {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 6px solid var(--color-mid-blue);
}

@media screen and (min-width: 720px) {
    .companies-header {
        margin-right: 30px;
    }
}

.list-by {
    display: flex;
}
    .list-by h3 {
        display: inline-block;
        margin: -2px 22px 0 0;
        padding: 0;
        font-size: 16px !important;
        font-weight: var(--weight-semi-bold);
        line-height: 1;
        color: var(--color-dark-grey);
    }


.header-alpha {
    padding-top: 0 !important;
}

.alpha-selector-wrapper {
    padding: 30px;
    border: 1px solid var(--color-light-grey);
}

.alpha-selector-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .alpha-selector-list li {
        display: inline-block;
        padding-right: 15px;
        padding-bottom: 15px !important;
    }

    .alpha-selector-list a,
    .alpha-selector-list span {
        display: block;
        height: 44px;
        width: 44px;
        padding-top: 5px;
        border-radius: 5px;
        font-size: 28px;
        line-height: 1;
        text-align: center;
    }

    .alpha-selector-list a {
        border: 1px solid var(--color-marine-blue) !important;
        color: var(--color-marine-blue) !important;
    }

    .alpha-selector-list span {
        border: 1px solid var(--color-warm-grey) !important;
        color: var(--color-warm-grey) !important;
        background: var(--color-white) !important;
        cursor: default;
    }

        .alpha-selector-list a:hover {
            color: var(--color-white) !important;
            background-color: var(--color-marine-blue);
            text-decoration: none;
        }    

    .alpha-selector-list .selected a,
    .alpha-selector-list .selected a:hover {
        background-color: var(--color-mid-blue);
        border-color: var(--color-mid-blue) !important;
        color: var(--color-white) !important;
        cursor: default;
    }

    .pag-program-description br {
        display: none;
    }

.autocomplete-input-wrap {
    position: relative;
}

    .autocomplete-input-wrap input {
        padding-right: 48px;
    }

.autocomplete-clear {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 2;
    height: 26px;
    width: 26px;
    background-color: var(--color-brownish-grey);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
}

    .autocomplete-clear:hover {
        background-color: var(--color-mid-blue);
    }

    .autocomplete-clear:before {
        font-size: 16px;
        color: var(--color-white);
        line-height: 1.7;
    }

.pag-product p,
.pag-company p {
    margin-bottom: 10px;
}

.pag-product .pag-product-deliverymethod {
    font-weight: bold;
}

.pag-company-description strong {
    display: block;
}

.pag-company img {
   max-width: 200px;
   float: right;
   margin-left: 30px;
}

.pag-program-details {
    overflow: hidden;
    margin-bottom: 0;
}

    .pag-program-details dt,
    .pag-program-details dd {
        float: left;
        margin-bottom: 12px;
    }

    .pag-program-details dt {
        padding-right: 10px;
        font-weight: var(--weight-bold);
        clear: left;
    }

    .pag-program-details .coverage-type {
        padding-right: 10px;
    }

.pag-biosimilar-list {
    margin-bottom: 60px;
}
.pag-program-results {
    padding-top: 30px;
    border-top: 5px solid var(--color-mid-blue);
}

.sidebar-product {
    border: 1px solid var(--color-light-grey);
    border-radius: 5px;
    margin: 0 0 60px 0;
}

.sidebar-product.hide {
    margin: 0;
    border: none;
}

.sidebar-product-feature {
    padding: 60px 15px;
    text-align: center;
}
.sidebar-product-feature img {
    margin: auto;
}

.sidebar-product-url {

}


.sf_colsOut.interior-layout__main .sidebar-product-url a {
    display: block;
    padding: 20px 60px;
    background-color: var(--color-marine-blue);
    text-align: center;
    font-family: 'Oswald', sans-serif;
    color: var(--color-white) !important;
    font-size: 22px;
    font-weight: var(--weight-semi-bold);
}

        .sidebar-product-url a:hover {
            color: var(--color-white) !important;
            background-color: var(--color-mid-blue);
            text-decoration: underline;
        }

.pag-sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--color-light-grey);
}

.sf_colsOut.interior-layout__main .pag-sidebar-links a {
    position: relative;
    display: block;
    padding-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.18px;
    font-weight: var(--weight-bold);
    color: var(--color-mid-blue) !important;
}

        .pag-sidebar-links a:after {
            font-family: "Font Awesome 5 Pro";
            content: '\f054';
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
            font-size: 14px;
            font-weight: 600;
            margin-left: 10px;
        }

.sf_colsOut.interior-layout__main .pag-sidebar-links a:hover {
    color: var(--color-marine-blue) !important;
    text-decoration: underline;
}

@media screen and (min-width: 720px) {
    .pag-listing {
        padding-right: 30px;
    }
}

.company-detail .interior-layout__main .container .sf_colsOut.sf_2cols_1_67 {
    float: none;
    width: 100%;
}

.company-detail .interior-layout__main .container .sf_colsOut.sf_2cols_2_33 {
    display: none;
}

.sf_colsOut.interior-layout__main .search-bar-header {
    width: 67%;
    padding-right: 30px;
    padding-bottom: 16px;
    text-align: right;
}

.company-detail .search-bar-header {
    width: 100%;
}

.sf_colsOut.interior-layout__main .search-bar-header a {
    color: var(--color-mid-blue) !important;
    font-weight: var(--weight-semi-bold);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.18px;
}

    .sf_colsOut.interior-layout__main .search-bar-header a:hover {
        color: var(--color-marine-blue) !important;
        text-decoration: underline;
    }

        .search-bar-header a:after {
            font-family: "Font Awesome 5 Pro";
            content: '\f054';
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
            font-size: 14px;
            font-weight: 600;
            margin-left: 10px;
        }

.pag-company-detail-sidebar {
    margin-bottom: 60px;
}

@media screen and (min-width: 1200px) {
    .pag-company-detail-sidebar {
        width: 50%;
        float: right;
        margin-left: 30px;
    }
}

@media screen and (min-width: 1400px) {
    .pag-company-detail-sidebar {
        width: 25%;
        float: right;
    }
}

.pag-company-detail-logo {
    margin-bottom: 60px;
}

.pag-company-detail-sidebar-content {
    background-color: var(--color-light-grey);
    border: 1px solid var(--color-slate-grey);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 30px;
}

    .pag-company-detail-sidebar-content dt {
        font-weight: var(--weight-bold);
    }

    .pag-company-detail-sidebar-content dd {
        padding-bottom: 30px;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
